Skip to content

Commit 53655ec

Browse files
author
Mathieu Scheltienne
committed
fix quotes for blue style
1 parent edd95db commit 53655ec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

nibabel/quaternions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
from .casting import sctypes
3333

34-
MAX_FLOAT = sctypes["float"][-1]
34+
MAX_FLOAT = sctypes['float'][-1]
3535
FLOAT_EPS = np.finfo(float).eps
3636

3737

nibabel/tests/test_scaling.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ def test_scaling_in_abstract(category0, category1, overflow):
188188

189189
def check_int_a2f(in_type, out_type):
190190
# Check that array to / from file returns roughly the same as input
191-
big_floater = sctypes["float"][-1]
191+
big_floater = sctypes['float'][-1]
192192
info = type_info(in_type)
193193
this_min, this_max = info['min'], info['max']
194194
if not in_type in sctypes['complex']:

0 commit comments

Comments
 (0)