Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0b52d12

Browse files
committed
Fix issue due to premature private method rename
1 parent b38a7ac commit 0b52d12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎proplot/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,7 @@ def __enter__(self):
791791
rc_old = context.rc_old # used to re-apply settings without copying whole dict
792792
for key, value in kwargs.items():
793793
try: # TODO: consider moving setting validation to .context()
794-
kw_proplot, kw_matplotlib = self._get_item(key, value)
794+
kw_proplot, kw_matplotlib = self._get_item_dicts(key, value)
795795
except ValueError as error:
796796
self.__exit__()
797797
raise error

0 commit comments

Comments
 (0)