Skip to content

Commit

Permalink
fix: appease pylint will be reverted in next PR
Browse files Browse the repository at this point in the history
  • Loading branch information
MDavidson17 committed Sep 19, 2022
1 parent 9a6ae29 commit 5e398da
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/standardise_validate.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
def main() -> None:

concurrency: int = 1
parser = argparse.ArgumentParser()
parser.add_argument("--preset", dest="preset", required=True)
parser.add_argument("--source", dest="source", nargs="+", required=True)
arguments = parser.parse_args()
parse_args = argparse.ArgumentParser()
parse_args.add_argument("--preset", dest="preset", required=True)
parse_args.add_argument("--source", dest="source", nargs="+", required=True)
arguments = parse_args.parse_args()

source = format_source(arguments.source)

Expand Down

0 comments on commit 5e398da

Please sign in to comment.