Skip to content

Commit

Permalink
end of step 2
Browse files Browse the repository at this point in the history
  • Loading branch information
DSungatulin committed Dec 26, 2023
1 parent 5513384 commit 2fdb36a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion gendiff/scripts/gendiff.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@


def main():
parser = argparse.ArgumentParser(description='Compares two configuration files and shows a difference.')
parser = argparse.ArgumentParser(
description='Compares two configuration files and shows a difference.'
)
parser.add_argument('first_file')
parser.add_argument('second_file')
parser.add_argument('-f', '--format', help='set format of output')
return parser.parse_args()


Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ version = "0.1.0"
description = ""
authors = ["DSungatulin <sungatulindaniyar@gmail.com>"]
readme = "README.md"
packages = [{ include = "gendiff" },]
packages = [
{ include = "gendiff" },
]


[tool.poetry.dependencies]
python = "^3.11"
Expand Down

0 comments on commit 2fdb36a

Please sign in to comment.