Skip to content

Commit

Permalink
Merge pull request #149 from maxmind/greg/new-black
Browse files Browse the repository at this point in the history
Run latest black against code
  • Loading branch information
faktas2 authored Jan 29, 2024
2 parents cf161f6 + bccb897 commit 3cc5650
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
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

0 comments on commit 3cc5650

Please sign in to comment.