Multiple statements should not be on the same line separated by a semicolon. They should be on their own separate lines

Anti-pattern

from gevent import monkey; monkey.patch_all()

Best practice

from gevent import monkey
monkey.patch_all()