From d86c9aacbc2c01481ea415f89718ba8943d5bb08 Mon Sep 17 00:00:00 2001 From: James Lu Date: Fri, 2 May 2025 22:49:14 -0700 Subject: [PATCH] Geography: remove Python 3.4 version check --- plugins/Geography/__init__.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/plugins/Geography/__init__.py b/plugins/Geography/__init__.py index 559ff38d9..aa57361cb 100644 --- a/plugins/Geography/__init__.py +++ b/plugins/Geography/__init__.py @@ -52,10 +52,7 @@ __url__ = "" from . import config from . import plugin -if sys.version_info >= (3, 4): - from importlib import reload -else: - from imp import reload +from importlib import reload # In case we're being reloaded. reload(config) reload(plugin)