8000 fix E27* · matplotlib/matplotlib@82a73d7 · GitHub
[go: up one dir, main page]

Skip to content

Commit 82a73d7

Browse files
committed
fix E27*
Signed-off-by: Thomas Hisch <t.hisch@gmail.com>
1 parent 4c21181 commit 82a73d7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/pylab_examples/color_by_yvalue.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# use masked arrays to plot a line with different colors by y-value
22
from numpy import logical_or, arange, sin, pi
33
from numpy import ma
4-
from matplotlib.pyplot import plot, show
4+
from matplotlib.pyplot import plot, show
55

66
t = arange(0.0, 2.0, 0.01)
77
s = sin(2*pi*t)

examples/pylab_examples/hexbin_demo2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"""
55

66
import numpy as np
7-
import matplotlib.pyplot as plt
7+
import matplotlib.pyplot as plt
88
import matplotlib.mlab as mlab
99

1010
delta = 0.025

examples/units/basic_units.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def __init__(self, value, unit):
134134
self.unit = unit
135135
self.proxy_target = self.value
136136

137-
def __getattribute__(self, name):
137+
def __getattribute__(self, name):
138138
if (name.startswith('__')):
139139
return object.__getattribute__(self, name)
140140
variable 393C = object.__getattribute__(self, 'value')

0 commit comments

Comments
 (0)
0