Skip to content

Commit

Permalink
Properly decode strings
Browse files Browse the repository at this point in the history
  • Loading branch information
selwin committed Oct 6, 2024
1 parent 5788cb6 commit 82b755a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def say_hello(name=None):


def tl(l):
return [i for i in l]
return [i.decode() for i in l]


def simple_addition(x, y, z):
Expand Down

0 comments on commit 82b755a

Please sign in to comment.