Skip to content

Commit

Permalink
Merge pull request #389 from methane/remove-unnecessary-line
Browse files Browse the repository at this point in the history
Remove unnecessary line in to_safe_json
  • Loading branch information
RazerM authored Oct 22, 2024
2 parents ccbd34f + a8a8707 commit 8cde0ee
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/logbook/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,6 @@ def _convert(obj):
for key, value in obj.items():
if not isinstance(key, str):
key = str(key)
if not isinstance(key, str):
key = key
rv[key] = _convert(value)
return rv

Expand Down

0 comments on commit 8cde0ee

Please sign in to comment.