Skip to content

Commit

Permalink
build: poetry update
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleKing committed Nov 5, 2023
1 parent 26a9179 commit 5c209c4
Show file tree
Hide file tree
Showing 2 changed files with 314 additions and 313 deletions.
2 changes: 1 addition & 1 deletion calcipy/md_writer/_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def _handle_source_file(line: str, path_file: Path) -> List[str]:
List[str]: list of auto-formatted text
"""
key, path_rel = [*_parse_var_comment(line).items()][0]
key, path_rel = next(iter(_parse_var_comment(line).items()))
path_base = get_project_path() if path_rel.startswith('/') else path_file.resolve().parent
path_source = path_base / path_rel.lstrip('/')
language = path_source.suffix.lstrip('.')
Expand Down
Loading

0 comments on commit 5c209c4

Please sign in to comment.