Browse Source

Moved `from __future__ import annotations` to the top.

pull/400/head
1Codealot 4 months ago committed by Adam Johnson
parent
commit
12d3ab47bc
Signed by: Hoikas
GPG Key ID: 0B6515D6FF6F271E
  1. 3
      korman/nodes/node_avatar.py
  2. 3
      korman/nodes/node_deprecated.py
  3. 3
      korman/nodes/node_logic.py
  4. 3
      korman/nodes/node_softvolume.py

3
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 <http://www.gnu.org/licenses/>.
from __future__ import annotations
import bpy
from bpy.props import *
from __future__ import annotations
from typing import *
from PyHSPlasma import *

3
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 <http://www.gnu.org/licenses/>.
from __future__ import annotations
import abc
import bpy
from __future__ import annotations
from typing import *
from bpy.props import *

3
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 <http://www.gnu.org/licenses/>.
from __future__ import annotations
import bpy
from bpy.props import *
from __future__ import annotations
from typing import *
from PyHSPlasma import *

3
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 <http://www.gnu.org/licenses/>.
from __future__ import annotations
import bpy
from bpy.props import *
from __future__ import annotations
from typing import *
from PyHSPlasma import *

Loading…
Cancel
Save