Skip to content

Commit 99a7318

Browse files
Merge pull request pandas-dev#8922 from aevri/refactor/move_import
CLN: move import to top of file
2 parents a3e478d + cfcda5f commit 99a7318

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pandas/core/config.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
import re
5252

5353
from collections import namedtuple
54+
from contextlib import contextmanager
5455
import warnings
5556
from pandas.compat import map, lmap, u
5657
import pandas.compat as compat
@@ -681,8 +682,6 @@ def pp(name, ks):
681682
#
682683
# helpers
683684

684-
from contextlib import contextmanager
685-
686685

687686
@contextmanager
688687
def config_prefix(prefix):

0 commit comments

Comments
 (0)