Skip to content

Commit

Permalink
removed mistaken print.
Browse files Browse the repository at this point in the history
  • Loading branch information
AndresMWeber committed Feb 17, 2018
1 parent 9f15bce commit ca2597e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions anvil/grouping/rig.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,9 @@ def register_sub_rigs_from_dict(self, sub_rig_dict):
:param sub_rig_dict: dict, key must be in SUB_RIG_BUILD_TABLE and value must be dict or list of joints.
"""
for sub_rig_name, sub_rig_data in iteritems(sub_rig_dict):
self.info('Registering sub rig %s: %s.', sub_rig_name, sub_rig_data)
sub_rig_construction_data = self.SUB_RIG_BUILD_TABLE.get(sub_rig_name)
sub_rig_class, default_name_tokens = sub_rig_construction_data
sub_rig_kwargs = sub_rig_data if isinstance(sub_rig_data, dict) else {cfg.LAYOUT: sub_rig_data}
print(sub_rig_kwargs)
self.build_sub_rig(sub_rig_name, sub_rig_class, name_tokens=default_name_tokens, **sub_rig_kwargs)

def build_sub_rig(self, sub_rig_key, sub_rig_candidate=sub_rig.SubRig, **kwargs):
Expand Down

0 comments on commit ca2597e

Please sign in to comment.