Skip to content

Commit

Permalink
Release version 0.0.0.dev349
Browse files Browse the repository at this point in the history
  • Loading branch information
AAriam committed Nov 8, 2024
1 parent 388f22e commit c03239a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespaces = true
# ----------------------------------------- Project Metadata -------------------------------------
#
[project]
version = "0.0.0.dev348"
version = "0.0.0.dev349"
name = "ControlMan"
dependencies = [
"packaging >= 23.2, < 24",
Expand Down
2 changes: 1 addition & 1 deletion src/controlman/file_gen/python.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def python_files(self) -> list[DynamicFile]:
for filepath in abs_path.glob("**/*.py"):
file_content = filepath.read_text()
if mapping:
file_content = _pysyntax.modify.imports(module_content=file_content, mapping=mapping)
file_content = _pysyntax.modify.imports(code=file_content, mapping=mapping)
if filepath in path_to_globs_map:
for config_id, file_config in path_to_globs_map[filepath]:
if "docstring" in file_config:
Expand Down

0 comments on commit c03239a

Please sign in to comment.