Skip to content

Commit

Permalink
Remove a debug print accidentally left in.
Browse files Browse the repository at this point in the history
  • Loading branch information
lojack5 committed Mar 21, 2024
1 parent 5c651ef commit ea1901a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion structured/serializers/structs.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ def noop_action(x: T) -> T:

def compute_num_values(st: struct.Struct, *, __cache: dict[str, int] = {}) -> int:
"""Determine how many values are used in packing/unpacking a struct format."""
print(f'Compute num values: {st!r} {st.format} {st.size}')
try:
return __cache[st.format]
except KeyError:
Expand Down

0 comments on commit ea1901a

Please sign in to comment.