Skip to content

Commit 50b0c33

Browse files
committed
BUG: chore pre-commit inconsistent-namespace-usage
1 parent 4052620 commit 50b0c33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/plotting/frame/test_frame_color.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def test_color_and_style(self):
100100
style = {"g": "-", "h": "--"}
101101
expected_color = ["black", "brown"]
102102
expected_style = ["-", "--"]
103-
df = pd.DataFrame({"g": [1, 2], "h": [2, 3]}, index=[1, 2])
103+
df = DataFrame({"g": [1, 2], "h": [2, 3]}, index=[1, 2])
104104
ax = df.plot.line(color=color, style=style)
105105
color = [i.get_color() for i in ax.lines]
106106
style = [i.get_linestyle() for i in ax.lines]

0 commit comments

Comments
 (0)