Skip to content

Commit

Permalink
Proper source of teh generic "Group" (#726)
Browse files Browse the repository at this point in the history
Closes #712
  • Loading branch information
ksunden authored and untzag committed Aug 22, 2018
1 parent c7f2ae6 commit 44482f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion WrightTools/_open.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

from . import collection as wt_collection
from . import data as wt_data
from . import _group as wt_group


# --- define -------------------------------------------------------------------------------------
Expand Down Expand Up @@ -45,4 +46,4 @@ def open(filepath, edit_local=False):
elif class_name == "Collection":
return wt_collection.Collection(filepath=filepath, name=name, edit_local=edit_local)
else:
return wt_collection.Group(filepath=filepath, name=name, edit_local=edit_local)
return wt_group.Group(filepath=filepath, name=name, edit_local=edit_local)

0 comments on commit 44482f7

Please sign in to comment.