Skip to content

Commit ba75632

Browse files
committed
lint
1 parent dc5ecbd commit ba75632

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

bindings/python/pymongoarrow/pandas_types.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
import numbers
1818
import re
19-
from typing import Type, Union
19+
from typing import Union
2020

2121
import numpy as np
2222
import pandas as pd
@@ -204,7 +204,7 @@ def name(self) -> str:
204204
return f"bson_{self.type.__name__}[{self.subtype}]"
205205

206206
@classmethod
207-
def construct_array_type(cls) -> Type["PandasBinaryArray"]:
207+
def construct_array_type(cls) -> type["PandasBinaryArray"]:
208208
return PandasBinaryArray
209209

210210
@classmethod
@@ -242,7 +242,7 @@ class PandasObjectId(PandasBSONDtype):
242242
type = ObjectId
243243

244244
@classmethod
245-
def construct_array_type(cls) -> Type["PandasObjectIdArray"]:
245+
def construct_array_type(cls) -> type["PandasObjectIdArray"]:
246246
return PandasObjectIdArray
247247

248248

@@ -266,7 +266,7 @@ class PandasDecimal128(PandasBSONDtype):
266266
type = Decimal128
267267

268268
@classmethod
269-
def construct_array_type(cls) -> Type["PandasDecimal128Array"]:
269+
def construct_array_type(cls) -> type["PandasDecimal128Array"]:
270270
return PandasDecimal128Array
271271

272272

@@ -290,7 +290,7 @@ class PandasCode(PandasBSONDtype):
290290
type = Code
291291

292292
@classmethod
293-
def construct_array_type(cls) -> Type["PandasCodeArray"]:
293+
def construct_array_type(cls) -> type["PandasCodeArray"]:
294294
return PandasCodeArray
295295

296296

0 commit comments

Comments
 (0)