File tree 3 files changed +4
-2
lines changed
3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 8
8
9
9
* The public API on ``geoip2.database `` is now explicitly defined by
10
10
setting ``__all__ ``.
11
+ * The return type of the ``metadata() `` method on ``Reader `` is now
12
+ ``maxminddb.reader.Metadata `` rather than a union type.
11
13
12
14
4.3.0 (2021-09-20)
13
15
++++++++++++++++++
Original file line number Diff line number Diff line change @@ -269,7 +269,7 @@ def _flat_model_for(
269
269
270
270
def metadata (
271
271
self ,
272
- ) -> Union [ maxminddb .reader .Metadata , "maxminddb.extension.Metadata" ] :
272
+ ) -> maxminddb .reader .Metadata :
273
273
"""The metadata for the open database.
274
274
275
275
:returns: :py:class:`maxminddb.reader.Metadata` object
Original file line number Diff line number Diff line change 1
1
aiohttp >= 3.6.2 ,< 4.0.0
2
- maxminddb >= 2.1 .0 ,< 3.0.0
2
+ maxminddb >= 2.2 .0 ,< 3.0.0
3
3
requests >= 2.24.0 ,< 3.0.0
4
4
urllib3 >= 1.25.2 ,< 2.0.0
You can’t perform that action at this time.
0 commit comments