Skip to content

Commit

Permalink
Merge pull request #184 from jgunstone/update-default-path-for-check-…
Browse files Browse the repository at this point in the history
…duplicates

updated the default paths such that both of the scripts can be run from the root repo
  • Loading branch information
pisuke authored Jul 5, 2023
2 parents 3623dc7 + 6480745 commit fa23bc8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/check-duplicates.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def check_duplicates(filename):
def main():
show_title()
parser = argparse.ArgumentParser()
parser.add_argument("-i","--input", default="abbreviations.csv", help="Input CSV file to check for duplicates")
parser.add_argument("-i","--input", default="BDNS_Abbreviations_Register.csv", help="Input CSV file to check for duplicates")
args = parser.parse_args()
if exists(args.input):
check_duplicates(args.input)
Expand Down
2 changes: 1 addition & 1 deletion tools/sort.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def main():
parser.add_argument(
"-i",
"--input",
default="../BDNS_Abbreviations_Register.csv",
default="BDNS_Abbreviations_Register.csv",
help="Input CSV file to check sorted",
)
parser.add_argument(
Expand Down

0 comments on commit fa23bc8

Please sign in to comment.