Skip to content

Commit 52d4971

Browse files
committed
Suppress flake8 warnings from the change in the parent commit
1 parent aae1536 commit 52d4971

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

plasma/models/runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import sys
1313
import matplotlib
1414
matplotlib.use('Agg')
15-
import matplotlib.pyplot as plt
15+
import matplotlib.pyplot as plt # noqa
1616

1717
# if sys.version_info[0] < 3:
1818
# from itertools import imap

plasma/utils/performance.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
import os
88
import matplotlib
99
matplotlib.use('Agg') # for machines that don't have a display
10-
import matplotlib.pyplot as plt
11-
from matplotlib import rc
10+
import matplotlib.pyplot as plt # noqa
11+
from matplotlib import rc # noqa
1212
rc('font', **{'family': 'serif', 'sans-serif': ['Times']})
1313
rc('text', usetex=True)
1414

0 commit comments

Comments
 (0)