Skip to content

Commit 1c8046a

Browse files
authored
chore: cleanup debug print statements (#252)
Co-authored-by: sabinem <5292683+sabinem@users.noreply.github.com>
1 parent acc14c1 commit 1c8046a

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

odtp/dashboard/page_executions/detail.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -158,14 +158,12 @@ def ui_project_directory(self):
158158
)
159159

160160
def action_create_folder(self):
161-
print("make project dir")
162161
execution_path = environment.make_project_dir_for_execution(
163162
self.user["workdir"],
164163
self.digital_twin["digital_twin_name"],
165164
self.execution["title"]
166165
)
167166
db.set_execution_path(self.execution_id, execution_path=execution_path)
168-
print(f"set execution path {execution_path}")
169167
ui.notify(
170168
f"project directory {execution_path} has been created and set as project directory",
171169
type="positive",
@@ -272,7 +270,6 @@ def _display_step(self, step, index):
272270
self.ui_display_ports(step)
273271

274272
def set_secret_for_step(self, step, value):
275-
print(f"update {step} secret with {value}")
276273
db.update_step(step["_id"], {"secrets": value})
277274

278275
def get_secrets_select_options(self):

0 commit comments

Comments
 (0)