Skip to content

Commit 9b10387

Browse files
committed
no need to inherit from object (Python is no longer supported)
1 parent 49e3cc7 commit 9b10387

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

larray/core/checked.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -523,12 +523,12 @@ class Config:
523523
def CheckedArray(axes: AxisCollection, dtype: np.dtype = float) -> Type[Array]:
524524
raise NotImplementedError("CheckedArray cannot be used because pydantic is not installed")
525525

526-
class CheckedSession(object):
526+
class CheckedSession:
527527
def __init__(self, *args, **kwargs):
528528
raise NotImplementedError("CheckedSession class cannot be instantiated "
529529
"because pydantic is not installed")
530530

531-
class CheckedParameters(object):
531+
class CheckedParameters:
532532
def __init__(self, *args, **kwargs):
533533
raise NotImplementedError("CheckedParameters class cannot be instantiated "
534534
"because pydantic is not installed")

0 commit comments

Comments
 (0)