Closed aweinstein closed 2 months ago
In several parts of the code, we use the pattern:
if isinstance(var, type(None)): do_something()
Change it to:
if var is None: do_something()
@aweinstein fixes in the latest commit!
In several parts of the code, we use the pattern:
Change it to: