Skip to content

Commit e990c5f

Browse files
committed
Fix messed up indent
1 parent 2504a69 commit e990c5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

imas/wrangler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ def recursively_put(location, value, ids):
3232
return ids
3333

3434

35-
def wrangle(flat: Dict, version: Optional[str] = None) -> Dict[str, IDSToplevel]:
35+
def wrangle(flat: Dict, version="3.41.0") -> Dict[str, IDSToplevel]:
3636
wrangled = {}
37-
factory = IDSFactory(version) if version is not None else IDSFactory()
37+
factory = IDSFactory(version)
3838
for key in flat:
3939
ids, location = key.split(".", 1)
4040
if ids not in wrangled:

0 commit comments

Comments
 (0)