this appears to be a bug. I’ve submitted a fix here:
In the short-term you could either:
install mne-python from that PR branch (pip install -U git+https://github.com/drammock/mne-python@fix-vlim-joint)
access the colorbar axes from the generated figure, and delete them manually:
# ...
fig = epochs.plot_psd_topomap(bands=bands, vlim='joint', dB=True)
xmax = max(ax.get_position().xmin for ax in fig.axes)
for ax in fig.axes:
if ax.get_ylabel() == 'µV²/Hz (dB)' and ax.get_position().xmin != xmax:
ax.remove()
It’s not a URL, it’s a command-line argument to pip install (thus not expected to work in a browser). But nonetheless by now the command is out of date because the PR was merged and I reflexively deleted the branch. Now that it’s merged you can instead do