Skip to content

Commit

Permalink
remove OrderedDict
Browse files Browse the repository at this point in the history
  • Loading branch information
1ucian0 committed Jul 13, 2023
1 parent c32a965 commit d0d8588
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions qiskit/tools/jupyter/version_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

import time
from sys import modules
from collections import OrderedDict
from IPython.display import HTML, display
from IPython.core.magic import line_magic, Magics, magics_class
import qiskit
Expand All @@ -37,7 +36,7 @@ def qiskit_version_table(self, line="", cell=None):
html += "<table>"
html += "<tr><th>Software</th><th>Version</th></tr>"

packages = OrderedDict()
packages = dict()

from importlib.metadata import metadata, PackageNotFoundError

Expand Down

0 comments on commit d0d8588

Please sign in to comment.