mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2025-12-16 15:40:12 +01:00
fix: remove incorrect import inside loop - functions are in same file
This commit is contained in:
parent
29b5da4778
commit
7a94e195b7
1 changed files with 1 additions and 1 deletions
|
|
@ -258,7 +258,7 @@ def build_theme_catalog(
|
||||||
for tags in df_commanders['themeTags'].tolist():
|
for tags in df_commanders['themeTags'].tolist():
|
||||||
if tags is None or (isinstance(tags, float) and pd.isna(tags)):
|
if tags is None or (isinstance(tags, float) and pd.isna(tags)):
|
||||||
continue
|
continue
|
||||||
from code.deck_builder.theme_catalog_loader import parse_theme_tags, normalize_theme_display, canonical_key
|
# Functions are defined at top of this file, no import needed
|
||||||
parsed = parse_theme_tags(tags)
|
parsed = parse_theme_tags(tags)
|
||||||
if not parsed:
|
if not parsed:
|
||||||
continue
|
continue
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue