Skip to content

Commit

Permalink
remove bare except for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
bleykauf committed Jun 12, 2023
1 parent c1125da commit 2970f26
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions linien-common/linien_common/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,10 +300,10 @@ def pack(value):


def unpack(value):
try:
return pickle.loads(value)
except Exception:
return value
# try:
return pickle.loads(value)
# except Exception:
# return value


def get_signal_strength_from_i_q(i, q):
Expand Down

0 comments on commit 2970f26

Please sign in to comment.