Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: vchoutas/smplx
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 54d9c8e4fe487ccd884508388de10b5be58232fc
Choose a base ref
..
head repository: vchoutas/smplx
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 27f8abb807214b99873ceae23240f4c0ff316ade
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 smplx/utils.py
2 changes: 1 addition & 1 deletion smplx/utils.py
Original file line number Diff line number Diff line change
@@ -35,7 +35,7 @@ def __getitem__(self, key):
return getattr(self, key)

def get(self, key, default=None):
return getattr(self, key, default=default)
return getattr(self, key, default)

def __iter__(self):
return self.keys()