Skip to content

Commit

Permalink
fixed long line, sheesh those are irratating
Browse files Browse the repository at this point in the history
  • Loading branch information
shaneholloman committed Sep 27, 2024
1 parent 8d55b0f commit 30cf31f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/codemapper/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
creating detailed Markdown documentation of their structure and contents.
"""

__version__ = "3.4.5"
__version__ = "3.5.0"

# Any other necessary imports or package-level code can go here
3 changes: 2 additions & 1 deletion src/codemapper/codemapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,8 @@ def main():
directory_path = path

# Determine the base_name for the title
if not os.path.isabs(args.input_path) and not args.input_path.startswith(('http://', 'https://')):
if not os.path.isabs(args.input_path) and \
not args.input_path.startswith(('http://', 'https://')):
base_name = os.path.basename(os.path.abspath(args.input_path))
else:
base_name = os.path.basename(directory_path)
Expand Down

0 comments on commit 30cf31f

Please sign in to comment.