Skip to content

Commit

Permalink
Merge branch 'main' into pre-commit-ci-update-config
Browse files Browse the repository at this point in the history
  • Loading branch information
fkiraly committed Aug 1, 2023
2 parents 1803459 + 26b7378 commit 7a92b65
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion skbase/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"""
from typing import List

__version__: str = "0.4.6"
__version__: str = "0.5.0"

__author__: List[str] = ["fkiraly", "RNKuhns", "mloning"]
__all__: List[str] = []
2 changes: 1 addition & 1 deletion skbase/utils/deep_equals.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def ret(is_equal, msg):
else:
return is_equal

if type(x) != type(y):
if type(x) is not type(y):
return ret(False, f".type, x.type = {type(x)} != y.type = {type(y)}")

# we now know all types are the same
Expand Down

0 comments on commit 7a92b65

Please sign in to comment.