mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2025-09-22 04:50:46 +02:00
12 lines
No EOL
234 B
Python
12 lines
No EOL
234 B
Python
import os
|
|
import sys
|
|
|
|
if 'code' not in sys.path:
|
|
sys.path.insert(0, 'code')
|
|
|
|
os.environ['EDITORIAL_INCLUDE_FALLBACK_SUMMARY'] = '1'
|
|
|
|
from scripts.build_theme_catalog import main # noqa: E402
|
|
|
|
if __name__ == '__main__':
|
|
main() |