Skip to content

Commit 5f4c43a

Browse files
author
Michael Skelton
committed
Renamed input variable to avoid shadowing common namespaces
1 parent a62c364 commit 5f4c43a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

UpdateJsonDataset/update_json.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
OUTPUTSHEET = '../RansomwareOverview.xlsx'
1616
JSONFILE = '../RansomwareOverview.json'
1717

18-
def write_json_file(input, filename):
18+
def write_json_file(json_data, filename):
1919
output = open(filename, 'w')
20-
output.writelines(input)
20+
output.writelines(json_data)
2121

2222
def generate_json(source_file, download_destination, json_file):
2323
download_file(source_file, download_destination)

0 commit comments

Comments
 (0)