I've upgraded qiskit for the first time in a while and I've discovered that the magic function for displaying backend information doesn't seem to work properly.
Here's what I've tried running:
from qiskit.tools.jupyter import *
backend = P[1].get_backend('ibmq_poughkeepsie')
%qiskit_backend_overview
This returns a ZeroDivisionError.
I've also tried calling backend_monitor(backend), but returns a TypeError, saying that 'module' object is not callable.
I've tried looking into what kind of changes might have been made to the library for monitoring backends, but I cannot seem to find the answer I'm looking for. Any help would be much appreciated!