Skip to content

Commit

Permalink
Yet another lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsonbb committed Apr 18, 2024
1 parent 31e7ca7 commit e0aec67
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/nested_pandas/nestedframe/core.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# typing.Self and "|" union syntax don't exist in Python 3.9
from __future__ import annotations

from typing import List

import numpy as np
import pandas as pd
from pandas._libs import lib
from pandas._typing import Any, AnyAll, Axis, IndexLabel
from pandas.api.extensions import no_default
from typing import List

from nested_pandas.series import packer
from nested_pandas.series.dtype import NestedDtype
Expand Down Expand Up @@ -316,7 +317,7 @@ def dropna(
)
return new_df

def reduce(self, func, *args, **kwargs) -> NestedFrame:
def reduce(self, func, *args, **kwargs) -> NestedFrame:
"""
Takes a function and applies it to each top-level row of the NestedFrame.
Expand Down

0 comments on commit e0aec67

Please sign in to comment.