Skip to content

Commit

Permalink
Fix docstrings for generators.
Browse files Browse the repository at this point in the history
  • Loading branch information
MilanSkocic committed Nov 19, 2024
1 parent 1573cf6 commit 8ed6dab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/gen_fortran.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def run(fpath_ast: str, fpath_code: str)->None:


if __name__ == "__main__":
parser = argparse.ArgumentParser(prog='gensrc', description='Generate source code.')
parser = argparse.ArgumentParser(prog='genfortran', description='Generate source code.')
parser.add_argument("ast", help="File path to the Toml file for ast input.")
parser.add_argument("code", help="File path to the source file for output.")
args = parser.parse_args()
Expand Down
2 changes: 1 addition & 1 deletion scripts/gen_python.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
r"""Generate CPython sources."""
r"""Generate Python sources."""
import argparse
import tomlkit

Expand Down

0 comments on commit 8ed6dab

Please sign in to comment.