Skip to content

Commit 49c78a7

Browse files
committed
Make black happy again
1 parent 3d7fe2c commit 49c78a7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mip/cbc.py

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

4646
ffi = FFI()
4747
has_cbc = False
48-
os_is_64_bit = maxsize > 2 ** 32
48+
os_is_64_bit = maxsize > 2**32
4949
INF = float("inf")
5050
cut_idx = 0
5151

mip/gurobi.py

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

4444
ffi = FFI()
4545
CData = ffi.CData
46-
os_is_64_bit = maxsize > 2 ** 32
46+
os_is_64_bit = maxsize > 2**32
4747
INF = float("inf")
4848
MAX_NAME_SIZE = 512 # for variables and constraints
4949

0 commit comments

Comments
 (0)