Pattern: Use of multiple statements on one line (;
)
Issue: -
Multiple statements should not be on the same line separated by a semicolon. They should be on their own separate lines. This improves readability.
from gevent import monkey; monkey.patch_all()
from gevent import monkey
monkey.patch_all()