Skip to content

Commit

Permalink
fixed cas-lib not setting up on existing project
Browse files Browse the repository at this point in the history
  • Loading branch information
0Hughman0 committed Aug 23, 2024
1 parent e5db0f9 commit 2d0157a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cassini/ext/cassini_lib/extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def make_cas_lib_folder(project, cas_lib_dir=cas_lib_dir):
cas_lib_dir.mkdir()
(cas_lib_dir / "0.1.0").mkdir()

project.__before_setup_files__.append(make_cas_lib_folder) # ensures creates folders if project already exists!
project.__before_setup_files__.append(make_cas_lib_folder) # ensures will run even if project already setup.

for Tier in project.hierarchy:
if issubclass(Tier, NotebookTierBase):
Expand Down

0 comments on commit 2d0157a

Please sign in to comment.