Skip to content

Commit 4e11ee0

Browse files
reorder imports in src/pygambit/__init__.py
1 parent 6144b53 commit 4e11ee0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pygambit/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
# along with this program; if not, write to the Free Software
2020
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
2121
#
22-
import importlib.metadata
22+
import importlib.metadata # noqa: I001
23+
from .gambit import * # noqa: F401,F403,I001
2324

2425
from . import ( # noqa: F401
2526
catalog, # noqa: F401
@@ -31,7 +32,6 @@
3132
# Import manually coded games to ensure they are registered in the catalog
3233
# after catalog module is fully initialized (avoid circular import issues)
3334
from .catalog.catalog import _load_coded_games
34-
from .gambit import * # noqa: F401,F403,I001
3535

3636
_load_coded_games()
3737

0 commit comments

Comments
 (0)