Skip to content

Commit

Permalink
further code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas-fuchs committed Sep 6, 2024
1 parent 53e3697 commit e911db2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions varvamp/scripts/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
from varvamp import __version__


def create_dir_structure(dir):
def create_dir_structure(dir_path):
"""
create output folders and log file
"""
cwd = os.getcwd()
results_dir = os.path.join(cwd, dir)
results_dir = os.path.join(cwd, dir_path)
data_dir = os.path.join(results_dir, "data/")
# create folders
if not os.path.exists(results_dir):
Expand Down

0 comments on commit e911db2

Please sign in to comment.