Skip to content

Commit

Permalink
fix flake8 annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
jdelic committed Oct 8, 2022
1 parent e2abab2 commit 4ce4ff8
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions aptly_api/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,24 @@

_filetype = Optional[
Union[
Dict[str, Union[
Union[TextIO, BinaryIO, str, bytes],
Tuple[Optional[str], Union[TextIO, BinaryIO, str, bytes]],
Tuple[Optional[str], Union[TextIO, BinaryIO, str, bytes], str],
Tuple[Optional[str], Union[TextIO, BinaryIO, str, bytes], str, Dict[str, str]]
]],
Sequence[
Tuple[str, Union[
Dict[
str, Union[
Union[TextIO, BinaryIO, str, bytes],
Tuple[Optional[str], Union[TextIO, BinaryIO, str, bytes]],
Tuple[Optional[str], Union[TextIO, BinaryIO, str, bytes], str],
Tuple[Optional[str], Union[TextIO, BinaryIO, str, bytes], str, Dict[str, str]]
]]],
]
],
Sequence[
Tuple[
str, Union[
Union[TextIO, BinaryIO, str, bytes],
Tuple[Optional[str], Union[TextIO, BinaryIO, str, bytes]],
Tuple[Optional[str], Union[TextIO, BinaryIO, str, bytes], str],
Tuple[Optional[str], Union[TextIO, BinaryIO, str, bytes], str, Dict[str, str]]
]
]
],
]
]

Expand Down

0 comments on commit 4ce4ff8

Please sign in to comment.