Skip to content

Commit

Permalink
fix errors in seek when flow is not active
Browse files Browse the repository at this point in the history
  • Loading branch information
patkivikram committed Feb 4, 2022
1 parent 0b64ab9 commit c3fadfb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions faust/types/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ def __init_subclass__(
class _UsingKwargsInNew(_InitSubclassCheck, ident=909):
...


except TypeError:
abc_compatible_with_init_subclass = False
else:
Expand Down
1 change: 1 addition & 0 deletions faust/utils/json.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ def loads(s: str, json_loads: Callable = orjson.loads, **kwargs: Any) -> Any:
"""Deserialize json string."""
return json_loads(s)


else:

def dumps(
Expand Down

0 comments on commit c3fadfb

Please sign in to comment.