We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06d8b29 commit ad29988Copy full SHA for ad29988
lib/matplotlib/__init__.py
@@ -813,14 +813,12 @@ def _load_path_effects(self):
813
import matplotlib.patheffects as path_effects
814
815
path_effects_list = self._get('path.effects').copy()
816
- print("before_loop: ", path_effects_list)
817
for k, v in self.find_all('path.effects.').items():
818
if v is None:
819
continue
820
path_effect_name = k.split('.')[-1]
821
path_effect_function = getattr(path_effects, path_effect_name)
822
path_effects_list.append(path_effect_function(**v))
823
- print("after_loop: ", path_effects_list)
824
return path_effects_list
825
826
0 commit comments