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

Skip to content

Commit ad29988

Browse files
committed
remove print statements
1 parent 06d8b29 commit ad29988

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

lib/matplotlib/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -813,14 +813,12 @@ def _load_path_effects(self):
813813
import matplotlib.patheffects as path_effects
814814

815815
path_effects_list = self._get('path.effects').copy()
816-
print("before_loop: ", path_effects_list)
817816
for k, v in self.find_all('path.effects.').items():
818817
if v is None:
819818
continue
820819
path_effect_name = k.split('.')[-1]
821820
path_effect_function = getattr(path_effects, path_effect_name)
822821
path_effects_list.append(path_effect_function(**v))
823-
print("after_loop: ", path_effects_list)
824822
return path_effects_list
825823

826824

0 commit comments

Comments
 (0)