Skip to content

Commit 41ba2f8

Browse files
committed
Add edges2d to __all__
1 parent cbacb44 commit 41ba2f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

proplot/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from icecream import ic
1515
except ImportError: # graceful fallback if IceCream isn't installed
1616
ic = lambda *a: None if not a else (a[0] if len(a) == 1 else a) # noqa
17-
__all__ = ['arange', 'edges', 'units']
17+
__all__ = ['arange', 'edges', 'edges2d', 'units']
1818

1919
# Change this to turn on benchmarking
2020
BENCHMARK = False

0 commit comments

Comments
 (0)