We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd0168b commit 6d428d4Copy full SHA for 6d428d4
example_math_nodes.py
@@ -8,7 +8,7 @@
8
update_nodes_by_down,
9
setup_context_menu)
10
from example_nodes import Nodes
11
-from os.path import sep
+from os.path import join
12
13
if __name__ == '__main__':
14
QtCore.QCoreApplication.setAttribute(QtCore.Qt.AA_EnableHighDpiScaling)
@@ -47,7 +47,7 @@ def show_nodes_list(node):
47
[graph.register_node(n) for n in Nodes]
48
49
# load preset session
50
- graph.load_session('example_nodes'+sep+'networks'+sep+'example.nodes')
+ graph.load_session(join('example_nodes', 'networks', 'example.nodes'))
51
52
# update nodes
53
update_nodes_by_down(graph.all_nodes())
0 commit comments