Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNBurn <7nburn@gmail.com>2019-05-21 03:31:07 +0300
committerNBurn <7nburn@gmail.com>2019-05-21 03:31:07 +0300
commit8a6d66a1db9fa5dfd3a340e82f3ddcc805170334 (patch)
treeae058e058c359538f80b58457bc0e714024bcc8a /render_auto_tile_size.py
parent3778680f22bef286234434e22ca03481c7ef0495 (diff)
annotation property updates
Diffstat (limited to 'render_auto_tile_size.py')
-rw-r--r--render_auto_tile_size.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/render_auto_tile_size.py b/render_auto_tile_size.py
index f61839d7..d71a122d 100644
--- a/render_auto_tile_size.py
+++ b/render_auto_tile_size.py
@@ -156,7 +156,7 @@ class AutoTileSizeSettings(PropertyGroup):
threads_error: BoolProperty(
options={'HIDDEN'}
)
- num_tiles = IntVectorProperty(
+ num_tiles: IntVectorProperty(
default=(0, 0),
size=2,
options={'HIDDEN'}
@@ -173,7 +173,7 @@ class AutoTileSizeSettings(PropertyGroup):
default='',
options={'HIDDEN'}
)
- prev_res = IntVectorProperty(
+ prev_res: IntVectorProperty(
default=(0, 0),
size=2,
options={'HIDDEN'}
@@ -187,7 +187,7 @@ class AutoTileSizeSettings(PropertyGroup):
size=4,
options={'HIDDEN'}
)
- prev_actual_tile_size = IntVectorProperty(
+ prev_actual_tile_size: IntVectorProperty(
default=(0, 0),
size=2,
options={'HIDDEN'}