Skip to content

Commit

Permalink
remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
signedav committed Nov 24, 2023
1 parent ac726e9 commit 45e651e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion QgisModelBaker/gui/panel/basket_panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,12 +215,13 @@ def save_basket_config(self, db_connector, dataset):
basket_setting = self.basket_settings[topic_key]
if not basket_setting["existing"] and basket_setting["create"]:
# basket should be created
print(f"create {topic_key}")
status, message = db_connector.create_basket(
dataset_tid,
topic_key,
basket_setting["bid_value"].format(
t_id=f"{self._next_tid_value(db_connector):08}"
if len(basket_setting["bid_value"]) > 6
else self._next_tid_value(db_connector)
),
)
feedbacks.append((status, message))
Expand Down
1 change: 0 additions & 1 deletion QgisModelBaker/gui/panel/dataset_selector.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ def _store_basket_tid(self, index):
)

def set_default_project_variables(self, schema_identificator):
print(self.basket_model.model_topics(schema_identificator))
for model_topic in self.basket_model.model_topics(schema_identificator):
self._store_default_basket_tid(schema_identificator, model_topic)

Expand Down

0 comments on commit 45e651e

Please sign in to comment.