From da5bacf95068b53b6f148ca6a46691a90a29ead0 Mon Sep 17 00:00:00 2001 From: Nicholas Dyer Date: Thu, 11 May 2023 13:24:25 -0400 Subject: [PATCH] removed old importing code --- pocket_friends/game_files/surfaces/__init__.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pocket_friends/game_files/surfaces/__init__.py b/pocket_friends/game_files/surfaces/__init__.py index 6867d8e..e69de29 100644 --- a/pocket_friends/game_files/surfaces/__init__.py +++ b/pocket_friends/game_files/surfaces/__init__.py @@ -1,6 +0,0 @@ -import os -__all__ = [] -for module in os.listdir(os.path.dirname(os.path.abspath(__file__))): - if module != '__init__.py' and module[-3:] == '.py': - __all__.append(module) -