Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Oct 14, 2024
1 parent dc5ecbd commit ba75632
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions bindings/python/pymongoarrow/pandas_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import numbers
import re
from typing import Type, Union
from typing import Union

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

@classmethod
def construct_array_type(cls) -> Type["PandasBinaryArray"]:
def construct_array_type(cls) -> type["PandasBinaryArray"]:
return PandasBinaryArray

@classmethod
Expand Down Expand Up @@ -242,7 +242,7 @@ class PandasObjectId(PandasBSONDtype):
type = ObjectId

@classmethod
def construct_array_type(cls) -> Type["PandasObjectIdArray"]:
def construct_array_type(cls) -> type["PandasObjectIdArray"]:
return PandasObjectIdArray


Expand All @@ -266,7 +266,7 @@ class PandasDecimal128(PandasBSONDtype):
type = Decimal128

@classmethod
def construct_array_type(cls) -> Type["PandasDecimal128Array"]:
def construct_array_type(cls) -> type["PandasDecimal128Array"]:
return PandasDecimal128Array


Expand All @@ -290,7 +290,7 @@ class PandasCode(PandasBSONDtype):
type = Code

@classmethod
def construct_array_type(cls) -> Type["PandasCodeArray"]:
def construct_array_type(cls) -> type["PandasCodeArray"]:
return PandasCodeArray


Expand Down

0 comments on commit ba75632

Please sign in to comment.