Skip to content

Commit 0f5cf0d

Browse files
author
Arian Jamasb
committed
fix whitespace
1 parent e2364de commit 0f5cf0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

biopandas/mmcif/mmcif_parser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,15 +227,15 @@ def __repr__(self):
227227
def __cif_float_range__(inp):
228228
try:
229229
pos = inp.index("-", 1)
230-
return (__CIFFloat__(inp[:pos]), __CIFFloat__(inp[pos + 1 :]))
230+
return (__CIFFloat__(inp[:pos]), __CIFFloat__(inp[pos + 1:]))
231231
except Exception:
232232
return (__CIFFloat__(inp),)
233233

234234

235235
def __cif_int_range__(inp):
236236
try:
237237
pos = inp.index("-", 1)
238-
return (__CIFInt__(inp[:pos]), __CIFInt__(inp[pos + 1 :]))
238+
return (__CIFInt__(inp[:pos]), __CIFInt__(inp[pos + 1:]))
239239
except Exception:
240240
return (__CIFInt__(inp),)
241241

0 commit comments

Comments
 (0)