Skip to content

Commit

Permalink
Update to 0.1.1:
Browse files Browse the repository at this point in the history
bugfix for mixture concentration.
  • Loading branch information
Xiangyan93 committed Dec 2, 2023
1 parent 4c96951 commit 227ea64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mgktools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# -*- coding: utf-8 -*-


__version__ = '0.1.0'
__version__ = '0.1.1'
2 changes: 1 addition & 1 deletion mgktools/data/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def __init__(self, data: List[MolecularGraph2D],
else:
self.concentration = concentration
graphs = [d.graph for d in self.data]
map(lambda x, y: x.update_concentration(y), graphs, self.concentration)
list(map(lambda x, y: x.update_concentration(y), graphs, self.concentration))
# set graph
self.graph_type = graph_type
if graph_type == 'single_graph':
Expand Down

0 comments on commit 227ea64

Please sign in to comment.