mirror of
https://github.com/JockeTF/fimfarchive.git
synced 2024-11-22 05:17:59 +01:00
Use variable annotation instead of comment
This commit is contained in:
parent
cea1fed78f
commit
b097871279
1 changed files with 1 additions and 2 deletions
|
@ -44,7 +44,6 @@ __all__ = (
|
|||
)
|
||||
|
||||
|
||||
FlavorSet = FrozenSet[Flavor]
|
||||
StreamReader = codecs.getreader('utf-8')
|
||||
|
||||
|
||||
|
@ -55,7 +54,7 @@ class Fetcher:
|
|||
prefetch_meta = False
|
||||
prefetch_data = False
|
||||
|
||||
flavors = frozenset() # type: FlavorSet
|
||||
flavors: FrozenSet[Flavor] = frozenset()
|
||||
|
||||
def __enter__(self):
|
||||
"""
|
||||
|
|
Loading…
Reference in a new issue