Style fix in capi core.

This commit is contained in:
Patrick Shriwise 2019-07-15 14:35:20 -05:00
parent 77d40effb1
commit 9fab83c70c

View file

@ -87,7 +87,7 @@ def global_bounding_box():
llc = np.zeros((3,), dtype=float)
urc = np.zeros((3,), dtype=float)
_dll.openmc_global_bounding_box(llc.ctypes.data_as(POINTER(c_double)),
urc.ctypes.data_as(POINTER(c_double)))
urc.ctypes.data_as(POINTER(c_double)))
return llc, urc