Skip to content
This repository has been archived by the owner on Apr 23, 2021. It is now read-only.

Commit

Permalink
Merge pull request #395 from simphony/fix_datacontainer_particles
Browse files Browse the repository at this point in the history
Fix datacontainer particles, mesh and lattice datasets
  • Loading branch information
stefanoborini committed Mar 15, 2017
2 parents 7f0be18 + a659879 commit 700ef25
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion simphony/cuds/lattice.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def origin(self):

@property
def data(self):
return DataContainer(self._data)
return self._data

@data.setter
def data(self, value):
Expand Down
2 changes: 1 addition & 1 deletion simphony/cuds/mesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def uid(self):

@property
def data(self):
return dc.DataContainer(self._data)
return self._data

@data.setter
def data(self, value):
Expand Down
2 changes: 1 addition & 1 deletion simphony/cuds/particles.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def uid(self):

@property
def data(self):
return DataContainer(self._data)
return self._data

@data.setter
def data(self, new_data):
Expand Down

0 comments on commit 700ef25

Please sign in to comment.