We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3685ceb commit d72c895Copy full SHA for d72c895
chem/miller.py
@@ -1,4 +1,5 @@
1
""" Calculation of Miller indices """
2
+from functools import reduce
3
4
import numpy as np
5
import math
chem/tests.py
@@ -9,14 +9,14 @@
9
chemical_equations_equal,
10
)
11
12
-import miller
+from . import miller
13
14
local_debug = None
15
16
17
def log(s, output_type=None):
18
if local_debug:
19
- print s
+ print(s)
20
if output_type == 'html':
21
f.write(s + '\n<br>\n')
22
0 commit comments