Skip to content

Commit cd3fc57

Browse files
committed
fix missing imports
1 parent 74e11e7 commit cd3fc57

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

NodeGraphQt/base/graph.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import json
55
import os
66
import re
7+
from pathlib import Path
78

89
from Qt import QtCore, QtWidgets
910

examples/hotkeys/hotkey_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def quit_qt(graph):
9797
"""
9898
Quit the Qt application.
9999
"""
100-
from qtpy import QtCore
100+
from Qt import QtCore
101101
QtCore.QCoreApplication.quit()
102102

103103
def clear_undo(graph):

0 commit comments

Comments
 (0)