Skip to content
This repository has been archived by the owner on Oct 15, 2022. It is now read-only.

Commit

Permalink
Update build_config_class.py
Browse files Browse the repository at this point in the history
  • Loading branch information
SireInsectus committed Oct 3, 2022
1 parent c0ea607 commit 802dfe0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dbacademy_courseware/dbbuild/build_config_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,9 +387,9 @@ def _index_notebooks(self):
if "required_dbrs" in replacements: del replacements["required_dbrs"]

if len(replacements.keys()) == 0:
print(f" {notebook.order: >2}: {path} ignored={ignored} include_solution={include_solution} replacements={replacements}")
print(f" {notebook.order: >3}: {path} ignored={ignored} include_solution={include_solution} replacements={replacements}")
else:
print(f" {notebook.order: >2}: {path} ignored={ignored} include_solution={include_solution} replacements={{")
print(f" {notebook.order: >3}: {path} ignored={ignored} include_solution={include_solution} replacements={{")
max_key_length = 0
for key in replacements: max_key_length = len(key) if len(key) > max_key_length else max_key_length

Expand Down

0 comments on commit 802dfe0

Please sign in to comment.