Skip to content

Commit

Permalink
Remove debug that broke build
Browse files Browse the repository at this point in the history
  • Loading branch information
connorourke committed Sep 28, 2018
1 parent 8ec6890 commit 4e81b32
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crystal_torture/pymatgen_doping.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def sort_structure(structure,order):
symbols.remove("X")
symbols.append("X0+")

if True:#(set(symbols) == set(order)):
if (set(symbols) == set(order)):
structure_sorted=Structure(lattice=structure.lattice,species=[],coords=[])
for symbol in symbols:
for i,site in enumerate(structure.sites):
Expand Down
2 changes: 1 addition & 1 deletion crystal_torture/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.0.0'
__version__ = '1.0.3'

0 comments on commit 4e81b32

Please sign in to comment.