|
155 | 155 | from __future__ import (absolute_import, division, print_function,
|
156 | 156 | unicode_literals)
|
157 | 157 |
|
| 158 | +__all__ = ('TickHelper', 'Formatter', 'FixedFormatter', |
| 159 | + 'NullFormatter', 'FuncFormatter', 'FormatStrFormatter', |
| 160 | + 'StrMethodFormatter', 'ScalarFormatter', 'LogFormatter', |
| 161 | + 'LogFormatterExponent', 'LogFormatterMathtext', |
| 162 | + 'LogitFormatter', 'EngFormatter', 'Locator', |
| 163 | + 'IndexLocator', 'FixedLocator', 'NullLocator', |
| 164 | + 'LinearLocator', 'LogLocator', 'AutoLocator', |
| 165 | + 'MultipleLocator', 'MaxNLocator', 'AutoMinorLocator', |
| 166 | + 'SymmetricalLogLocator') |
| 167 | + |
158 | 168 | from matplotlib.externals import six
|
159 | 169 |
|
160 | 170 | import decimal
|
@@ -2149,12 +2159,3 @@ def get_locator(self, d):
|
2149 | 2159 |
|
2150 | 2160 | return locator
|
2151 | 2161 |
|
2152 |
| - |
2153 |
| -__all__ = ('TickHelper', 'Formatter', 'FixedFormatter', |
2154 |
| - 'NullFormatter', 'FuncFormatter', 'FormatStrFormatter', |
2155 |
| - 'StrMethodFormatter', 'ScalarFormatter', 'LogFormatter', |
2156 |
| - 'LogFormatterExponent', 'LogFormatterMathtext', 'Locator', |
2157 |
| - 'IndexLocator', 'FixedLocator', 'NullLocator', |
2158 |
| - 'LinearLocator', 'LogLocator', 'AutoLocator', |
2159 |
| - 'MultipleLocator', 'MaxNLocator', 'AutoMinorLocator', |
2160 |
| - 'SymmetricalLogLocator') |
|
0 commit comments