Skip to content

Commit

Permalink
corrected bug with print_cell definition
Browse files Browse the repository at this point in the history
  • Loading branch information
bonfus committed Dec 22, 2016
1 parent aa89f46 commit bce5808
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions muesr/utilities/printer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from muesr.core.nprint import print_cell
from muesr.core.nprint import print_cell as pc



Expand All @@ -8,7 +8,7 @@ def print_cell(sample):
Print base cell
"""
if sample._check_lattice():
print_cell(sample._cell)
pc(sample._cell)



Expand Down

0 comments on commit bce5808

Please sign in to comment.