We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f061148 commit 1112b28Copy full SHA for 1112b28
pandas/plotting/_converter.py
@@ -62,7 +62,7 @@ def get_pairs():
62
return pairs
63
64
65
-def register(explicit=False):
+def register(explicit=True):
66
"""Register Pandas Formatters and Converters with matplotlib
67
68
This function modifies the global ``matplotlib.units.registry``
pandas/tests/plotting/test_converter.py
@@ -109,7 +109,7 @@ def test_registry_resets(self):
109
units.registry[date] = date_converter
110
111
register_matplotlib_converters()
112
- assert units.registry[date] is date_converter
+ assert units.registry[date] is not date_converter
113
deregister_matplotlib_converters()
114
assert units.registry[date] is date_converter
115
0 commit comments