Skip to content

Commit

Permalink
updated param getter
Browse files Browse the repository at this point in the history
  • Loading branch information
klaxalk committed Aug 19, 2023
1 parent 75fa4b6 commit df5066b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion scripts/get_public_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,12 @@ def __init__(self):

with open(file_path, 'r') as file:
try:
print(file.read())
contents = file.read()
print("######################################")
print("# The following section was take from:")
print("# {}".format(file_path))
print("")
print(contents)
except:
print("There was a problem while opening the file '{}'".format(file_path))
break
Expand Down

0 comments on commit df5066b

Please sign in to comment.