Skip to content

Commit

Permalink
python3.8 (fixes coin-orgh-192)
Browse files Browse the repository at this point in the history
  • Loading branch information
bjodah committed May 31, 2019
1 parent f95d23a commit ec75b5f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/pulp/solvers.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@

import os
import sys
from time import clock
try:
from time import clock
except ImportError:
from time import perf_counter as clock
from uuid import uuid4
try:
import configparser
Expand Down

0 comments on commit ec75b5f

Please sign in to comment.