Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
szabgab committed Jul 25, 2024
1 parent 28286cb commit e3b02ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions python/examples/yaml/counter.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
foo: 2
2 changes: 1 addition & 1 deletion python/examples/yaml/yaml_counter.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

if len(sys.argv) == 1:
if counter:
for key, value in counter.items:
for key, value in counter.items():
print("{key} {value}")
else:
print("No counters were found")
Expand Down

0 comments on commit e3b02ba

Please sign in to comment.