Skip to content

Commit

Permalink
add module docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
ilanschnell committed Jun 11, 2021
1 parent b0cda33 commit fc9962d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions bitarray/__init__.pyi
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
"""
This stub, as well as util.pyi, have been tested with
Python 3.9 and mypy 0.901
"""
from collections.abc import Iterable, Iterator
from unittest.runner import TextTestResult

from typing import Any, BinaryIO, Literal, Union, overload
from typing import BinaryIO, Hashable, Union, overload


Codedict = dict[Any, bitarray]
Codedict = dict[Hashable, bitarray]


class decodetree:
Expand Down

0 comments on commit fc9962d

Please sign in to comment.