Skip to content

Commit c238cec

Browse files
committed
styling fixes
1 parent 8084caf commit c238cec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/_libs/tslib.pyx

+2-2
Original file line numberDiff line numberDiff line change
@@ -249,10 +249,10 @@ def array_with_unit_to_datetime(
249249
raise OutOfBoundsDatetime(f"cannot convert input with unit '{unit}'")
250250

251251
if values.dtype.kind == "i":
252-
result = (iresult * m).astype('M8[ns]')
252+
result = (iresult * m).astype("M8[ns]")
253253

254254
if values.dtype.kind == "f":
255-
fresult = (values*m).astype("f8")
255+
fresult = (values * m).astype("f8")
256256
fresult[mask] = 0
257257
if prec:
258258
fresult = round(fresult, prec)

0 commit comments

Comments
 (0)