We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3809913 + 4e81a15 commit a6bcc4bCopy full SHA for a6bcc4b
mpldxf/backend_dxf.py
@@ -69,6 +69,7 @@
69
70
71
def rgb_to_dxf(rgb_val):
72
+ """Convert an RGB[A] colour to DXF colour index."""
73
"""Convert an RGB[A] colour to DXF colour index."""
74
if rgb_val is None:
75
dxfcolor = dxf_colors.WHITE
tests/test_backend_ezdxf.py
@@ -98,7 +98,6 @@ def test_plot_with_data_outside_axes(self):
98
99
def test_plot_with_twin_axis_and_data_outside_axes(self):
100
"""Test a simple line-plot command with data outside the axes."""
101
- # Use non-interactive backend to avoid Tkinter issues
102
103
fig, ax1 = plt.subplots()
104
ax2 = ax1.twinx()
0 commit comments