Skip to content

Commit

Permalink
ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasrodes committed Dec 16, 2024
1 parent 28feb48 commit 8f8e97a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/wizard/etl_steps/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@
USING_TAGS_DEFAULT = False
try:
with get_session() as session:
tag_list = gm.Tag.load_tags(session)
tag_list = ["Uncategorized"] + sorted([tag.name for tag in tag_list])
tag_list_ = gm.Tag.load_tags(session)
tag_list = ["Uncategorized"] + sorted([tag.name for tag in tag_list_])
except OperationalError:
USING_TAGS_DEFAULT = True
tag_list = TAGS_DEFAULT
# NOTE: Use this when debugging
# USING_TAGS_DEFAULT = True
tag_list = TAGS_DEFAULT
# tag_list = TAGS_DEFAULT
# Step names
STEP_ICONS = {
"meadow": ":material/nature:",
Expand Down

0 comments on commit 8f8e97a

Please sign in to comment.