Browse Source

Added these imports: `from __future__ import annotations`

and `from typing import *`
pull/400/head
1Codealot 4 months ago committed by Adam Johnson
parent
commit
035e5a62ed
Signed by: Hoikas
GPG Key ID: 0B6515D6FF6F271E
  1. 2
      korman/nodes/node_avatar.py
  2. 2
      korman/nodes/node_deprecated.py
  3. 2
      korman/nodes/node_logic.py
  4. 1
      korman/nodes/node_responder.py
  5. 2
      korman/nodes/node_softvolume.py

2
korman/nodes/node_avatar.py

@ -15,6 +15,8 @@
import bpy
from bpy.props import *
from __future__ import annotations
from typing import *
from PyHSPlasma import *
from .node_core import PlasmaNodeBase, PlasmaNodeSocketBase

2
korman/nodes/node_deprecated.py

@ -15,6 +15,8 @@
import abc
import bpy
from __future__ import annotations
from typing import *
from bpy.props import *
from .node_core import *

2
korman/nodes/node_logic.py

@ -15,6 +15,8 @@
import bpy
from bpy.props import *
from __future__ import annotations
from typing import *
from PyHSPlasma import *
from .node_core import *

1
korman/nodes/node_responder.py

@ -17,6 +17,7 @@ from __future__ import annotations
import bpy
from bpy.props import *
from typing import *
import inspect
from PyHSPlasma import *
import uuid

2
korman/nodes/node_softvolume.py

@ -15,6 +15,8 @@
import bpy
from bpy.props import *
from __future__ import annotations
from typing import *
from PyHSPlasma import *
from .node_core import PlasmaNodeBase, PlasmaNodeSocketBase, PlasmaTreeOutputNodeBase

Loading…
Cancel
Save