1
0
mirror of https://github.com/django/django.git synced 2025-03-13 19:00:45 +00:00

Removed unused GeoIP2._cache attribute.

Unused since its introduction in 79e68c225b926302ebb29c808dda8afa49856f5c.
This commit is contained in:
Nick Pope 2021-04-05 00:46:15 +01:00 committed by Mariusz Felisiak
parent 31bef51d8e
commit adcb3a7a27

View File

@ -68,9 +68,7 @@ class GeoIP2:
'GeoLite2-City.mmdb'; overrides the GEOIP_CITY setting.
"""
# Checking the given cache option.
if cache in self.cache_options:
self._cache = cache
else:
if cache not in self.cache_options:
raise GeoIP2Exception('Invalid GeoIP caching option: %s' % cache)
# Getting the GeoIP data path.