fix pythone example

This commit is contained in:
Laurent Perron
2022-07-15 19:28:42 +02:00
parent a575d5953f
commit 4d28122fe9

View File

@@ -72,7 +72,7 @@ def read_model(filename):
current_info = SectionInfo()
model = {}
with gfile.Open(filename, 'r') as input_file:
with open(filename, 'r') as input_file:
print(f'Reading model from \'{filename}\'')
section_name = ''