Skip to content

Commit

Permalink
reverting accidental refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
Kory Stiger committed Jul 14, 2021
1 parent d158608 commit e958c08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion zpy_addon/execute_panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

import bpy

import client.util
import zpy
import gin
from bpy.types import Operator
Expand Down
6 changes: 2 additions & 4 deletions zpy_addon/segment_panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
from typing import Tuple

import bpy

import client.util
import zpy
from bpy.types import Operator
from bpy_extras.io_utils import ImportHelper
Expand Down Expand Up @@ -294,8 +292,8 @@ def execute(self, context):
for category in categories.values():
_add_category(
context,
name=client.util.get("name", None),
color=client.util.get("color", None),
name=category.get("name", None),
color=category.get("color", None),
)
return {"FINISHED"}

Expand Down

0 comments on commit e958c08

Please sign in to comment.