Skip to content

Commit

Permalink
encoding on python script file ingest
Browse files Browse the repository at this point in the history
  • Loading branch information
samidbb committed Jan 4, 2024
1 parent d1873b1 commit 5b8087b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/scaffolding/scripts/generate_tf_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
value = try(module.db_instance_example.$out_value, null)
}"""

with open(work_folder, "r") as f:
with open(work_folder, "r", encoding='UTF-8') as f:
data = json.load(f)
for i in data['inputs']:
if i['name'].startswith('is_'):
Expand Down

0 comments on commit 5b8087b

Please sign in to comment.