From 12d3ab47bc2adb726c964059eb5ec12d0787a064 Mon Sep 17 00:00:00 2001
From: 1Codealot <58225804+1Codealot@users.noreply.github.com>
Date: Sat, 20 Jan 2024 07:21:18 +0000
Subject: [PATCH] Moved `from __future__ import annotations` to the top.
---
korman/nodes/node_avatar.py | 3 ++-
korman/nodes/node_deprecated.py | 3 ++-
korman/nodes/node_logic.py | 3 ++-
korman/nodes/node_softvolume.py | 3 ++-
4 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/korman/nodes/node_avatar.py b/korman/nodes/node_avatar.py
index df3d4bd..54ccfd4 100644
--- a/korman/nodes/node_avatar.py
+++ b/korman/nodes/node_avatar.py
@@ -13,9 +13,10 @@
# You should have received a copy of the GNU General Public License
# along with Korman. If not, see .
+from __future__ import annotations
+
import bpy
from bpy.props import *
-from __future__ import annotations
from typing import *
from PyHSPlasma import *
diff --git a/korman/nodes/node_deprecated.py b/korman/nodes/node_deprecated.py
index fc99ae6..e965980 100644
--- a/korman/nodes/node_deprecated.py
+++ b/korman/nodes/node_deprecated.py
@@ -13,9 +13,10 @@
# You should have received a copy of the GNU General Public License
# along with Korman. If not, see .
+from __future__ import annotations
+
import abc
import bpy
-from __future__ import annotations
from typing import *
from bpy.props import *
diff --git a/korman/nodes/node_logic.py b/korman/nodes/node_logic.py
index 0230c9f..dd3df0f 100644
--- a/korman/nodes/node_logic.py
+++ b/korman/nodes/node_logic.py
@@ -13,9 +13,10 @@
# You should have received a copy of the GNU General Public License
# along with Korman. If not, see .
+from __future__ import annotations
+
import bpy
from bpy.props import *
-from __future__ import annotations
from typing import *
from PyHSPlasma import *
diff --git a/korman/nodes/node_softvolume.py b/korman/nodes/node_softvolume.py
index 527a336..a071e10 100644
--- a/korman/nodes/node_softvolume.py
+++ b/korman/nodes/node_softvolume.py
@@ -13,9 +13,10 @@
# You should have received a copy of the GNU General Public License
# along with Korman. If not, see .
+from __future__ import annotations
+
import bpy
from bpy.props import *
-from __future__ import annotations
from typing import *
from PyHSPlasma import *