Skip to content

Commit 4115e04

Browse files
committed
format use of functools import
1 parent c7cc6db commit 4115e04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/accessor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
from __future__ import annotations
99

10-
import functools as ft
10+
import functools
1111
from typing import (
1212
TYPE_CHECKING,
1313
final,
@@ -120,7 +120,7 @@ def _setter(self, new_values):
120120
def _create_delegator_method(name: str):
121121
method = getattr(delegate, accessor_mapping(name))
122122

123-
@ft.wraps(method)
123+
@functools.wraps(method)
124124
def f(self, *args, **kwargs):
125125
return self._delegate_method(name, *args, **kwargs)
126126

0 commit comments

Comments
 (0)