mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2025-12-17 16:10:12 +01:00
12 lines
234 B
Python
12 lines
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()
|