We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a62c364 commit 5f4c43aCopy full SHA for 5f4c43a
UpdateJsonDataset/update_json.py
@@ -15,9 +15,9 @@
15
OUTPUTSHEET = '../RansomwareOverview.xlsx'
16
JSONFILE = '../RansomwareOverview.json'
17
18
-def write_json_file(input, filename):
+def write_json_file(json_data, filename):
19
output = open(filename, 'w')
20
- output.writelines(input)
+ output.writelines(json_data)
21
22
def generate_json(source_file, download_destination, json_file):
23
download_file(source_file, download_destination)
0 commit comments