Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
GMattheisen committed Apr 21, 2020
1 parent ccbcfd2 commit 8cde1e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fairgraph/electrophysiology.py
Original file line number Diff line number Diff line change
Expand Up @@ -942,9 +942,9 @@ def from_kg_instance(cls, instance, client, resolved=False):
obj = cls(id=D["@id"], instance=instance, **args)
return obj

def _build_data(self, client):
def _build_data(self, client, all_fields=False):
"""docstring"""
data = super(MEGExperiment, self)._build_data(client)
data = super(MEGExperiment, self)._build_data(client, all_fields=all_fields)
data["nsg:stimulus"] = {"nsg:stimulusType": data.pop("nsg:stimulusType", None)}
return data

Expand Down

0 comments on commit 8cde1e5

Please sign in to comment.