Skip to content

Commit 0141194

Browse files
authored
Merge pull request #7210 from aldbr/v8.0_FIX_ci-tests
[8.0] fix: CI tests
2 parents be7fcec + 3e86271 commit 0141194

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/DIRAC/Core/Utilities/Graphs/QualityMapGraph.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,10 +168,10 @@ def draw(self):
168168
setp(self.ax.get_yticklines(), markersize=0.0) # pylint: disable=not-callable
169169

170170
cax, kw = make_axes(self.ax, orientation="vertical", fraction=0.07)
171-
cb = ColorbarBase(
171+
ColorbarBase(
172172
cax, cmap=self.cmap, norm=self.norms, boundaries=self.cbBoundaries, values=self.cbValues, ticks=self.cbTicks
173173
)
174-
cb.draw_all()
174+
self.figure.draw_without_rendering()
175175
# cb = self.ax.colorbar( self.mapper, format="%d%%",
176176
# orientation='horizontal', fraction=0.04, pad=0.1, aspect=40 )
177177
# setp( cb.outline, linewidth=.5 )

0 commit comments

Comments
 (0)