Skip to content

Commit

Permalink
pep
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugenio Pignataro committed Mar 6, 2019
1 parent d388555 commit 7137867
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions oscurart_tools/render/material_overrides.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ def RestoreOverrides(dummy):


class OscOverridesProp(bpy.types.PropertyGroup):
matoverride = bpy.props.StringProperty()
grooverride = bpy.props.StringProperty()
matoverride: bpy.props.StringProperty()
grooverride: bpy.props.StringProperty()

bpy.utils.register_class(OscOverridesProp)
bpy.types.Scene.ovlist = bpy.props.CollectionProperty(type=OscOverridesProp)
Expand Down Expand Up @@ -118,7 +118,7 @@ class OscOverridesUp(bpy.types.Operator):
bl_label = 'Move Override up'
bl_options = {'INTERNAL'}

index = bpy.props.IntProperty(min=0)
index: bpy.props.IntProperty(min=0)

@classmethod
def poll(self, context):
Expand All @@ -137,7 +137,7 @@ class OscOverridesDown(bpy.types.Operator):
bl_label = 'Move Override down'
bl_options = {'INTERNAL'}

index = bpy.props.IntProperty(min=0)
index: bpy.props.IntProperty(min=0)

@classmethod
def poll(self, context):
Expand All @@ -155,7 +155,7 @@ class OscOverridesKill(bpy.types.Operator):
bl_label = 'Kill Override'
bl_options = {'INTERNAL'}

index = bpy.props.IntProperty(min=0)
index: bpy.props.IntProperty(min=0)

@classmethod
def poll(self, context):
Expand Down

0 comments on commit 7137867

Please sign in to comment.