Skip to content

Commit

Permalink
BUG: Solves #54
Browse files Browse the repository at this point in the history
  • Loading branch information
mcocdawc committed Jan 7, 2018
1 parent cc4aa1d commit db959b3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@
# Changelog

## Documentation
* Use ``cc.__version__`` and no special workaround.

## Performance

## Code quality
* Removed unused code

## Bugfixes

* Solves a bug that appeared because of changes in an underlying library.
([Issue 53](https://github.com/mcocdawc/chemcoord/issues/54))


## Enhancement
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ def complete_calculation():
self.add_data('valency')['valency']))
val_bond_dict = {key:
SortedSet([i for i in bond_dict[key]],
key=lambda x: -valency[x], load=20)
key=lambda x: -valency[x])
for key in bond_dict}
return val_bond_dict
if use_lookup:
Expand Down

0 comments on commit db959b3

Please sign in to comment.