Skip to content

Commit

Permalink
Fix incorrect Python import (fixes issue openhwgroup#1341.)
Browse files Browse the repository at this point in the history
* tools/vptool/vptool/vp.py (OrderedDict): Import from 'collections', not
  from 'typing'.

Signed-off-by: Zbigniew Chamski <[email protected]>
  • Loading branch information
zchamski committed Aug 25, 2022
1 parent 9a26828 commit f527936
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/vptool/vptool/vp.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import tkinter.colorchooser
from inspect import ismethod
import pickle
from typing import OrderedDict
from collections import OrderedDict

# import cPickle as pickle
# Configuration (env + Python + Yaml) is imported indirectly via vp_pack.
Expand Down

0 comments on commit f527936

Please sign in to comment.