Skip to content

Commit 63793fd

Browse files
authored
Apply suggestion from @chalmerlowe
indents function definition.
1 parent 04430f6 commit 63793fd

File tree

1 file changed

+1
-1
lines changed
  • packages/db-dtypes/db_dtypes

1 file changed

+1
-1
lines changed

packages/db-dtypes/db_dtypes/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class BaseDatetimeArray(pandas_backports.OpsMixin, _mixins.NDArrayBackedExtensio
5757
def _datetime(cls, value: Any) -> Any:
5858
raise NotImplementedError
5959

60-
def __init__(self, values, dtype=None, copy: bool = False):
60+
def __init__(self, values, dtype=None, copy: bool = False):
6161
if not (
6262
isinstance(values, numpy.ndarray) and values.dtype == numpy.dtype("<M8[ns]")
6363
):

0 commit comments

Comments
 (0)