Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions maxminddb/decoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
This package contains code for decoding the MaxMind DB data section.

"""

import struct
from typing import cast, Dict, List, Tuple, Union

Expand Down
1 change: 1 addition & 0 deletions maxminddb/reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
This module contains the pure Python database reader and related classes.

"""

try:
import mmap
except ImportError:
Expand Down
1 change: 1 addition & 0 deletions maxminddb/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

This module provides a Record type that represents a database record.
"""

from typing import AnyStr, Dict, List, Union

Primitive = Union[AnyStr, bool, float, int]
Expand Down