Skip to content

Commit

Permalink
Update fame.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Edvard Garmannslund authored Jun 7, 2024
1 parent 1ee6457 commit d76dbae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ssb_konjunk/fame.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def write_out_fame_format_txt(
"""
with fs.open(gcp_path, "w") as f:
# Write data rows
for name, date, value in zip(names, dates, values):
for name, date, value in zip(names, dates, values, strict=False):
# Apply format specification
formatted_value = f"{value:20.2f}"
# Write data row
Expand Down

0 comments on commit d76dbae

Please sign in to comment.