mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2025-12-16 23:50:12 +01:00
Finished modularization with assistance from Github copilot
This commit is contained in:
parent
d9b56d8e12
commit
0135eeeb3d
6 changed files with 202 additions and 139 deletions
11
code/__init__.py
Normal file
11
code/__init__.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
"""Root package for the MTG deckbuilder source tree.
|
||||
|
||||
Adding this file ensures the directory is treated as a proper package so that
|
||||
`python -m code.main` resolves to this project instead of the Python stdlib
|
||||
module named `code` (which is a simple module, not a package).
|
||||
|
||||
If you still accidentally import the stdlib module, be sure you are executing
|
||||
from the project root so the local `code` package is first on sys.path.
|
||||
"""
|
||||
|
||||
__all__ = []
|
||||
Loading…
Add table
Add a link
Reference in a new issue