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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-10-20 01:13:38 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-10-20 01:17:25 +0300
commitd73f6647906d4562a191b78faa578a619090aea9 (patch)
treee3ebdfd7b4d415a0b1c7f569c1d9dd6ffb8deea4 /tests
parentd7b4350749ce3906fcca9803b863fb029b3f541a (diff)
Cleanup: trailing space, use single quotes for enums
Diffstat (limited to 'tests')
-rw-r--r--tests/python/bl_pyapi_idprop_datablock.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/python/bl_pyapi_idprop_datablock.py b/tests/python/bl_pyapi_idprop_datablock.py
index d4253dc4665..5a7e4bee4fc 100644
--- a/tests/python/bl_pyapi_idprop_datablock.py
+++ b/tests/python/bl_pyapi_idprop_datablock.py
@@ -257,8 +257,8 @@ def test_restrictions1():
# just panel for testing the poll callback with lots of objects
class TEST_PT_DatablockProp(bpy.types.Panel):
bl_label = "Datablock IDProp"
- bl_space_type = "PROPERTIES"
- bl_region_type = "WINDOW"
+ bl_space_type = 'PROPERTIES'
+ bl_region_type = 'WINDOW'
bl_context = "render"
def draw(self, context):