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
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-04-16 17:40:47 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-16 17:40:47 +0300
commitdbc058301bf516a53b92b9c45b5c4f3ecc33ecf4 (patch)
treed93fb65825e40300f68707ae75718773bc73678f /source/blender/freestyle/intern/python/BPy_MediumType.cpp
parentd217b23f735cb9232d86c7730ed0a0aa45e3074e (diff)
Cleanup: trailing commas
Diffstat (limited to 'source/blender/freestyle/intern/python/BPy_MediumType.cpp')
-rw-r--r--source/blender/freestyle/intern/python/BPy_MediumType.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/freestyle/intern/python/BPy_MediumType.cpp b/source/blender/freestyle/intern/python/BPy_MediumType.cpp
index 30a930f1839..4d73bdede67 100644
--- a/source/blender/freestyle/intern/python/BPy_MediumType.cpp
+++ b/source/blender/freestyle/intern/python/BPy_MediumType.cpp
@@ -85,15 +85,15 @@ PyTypeObject MediumType_Type = {
PyLongObject _BPy_MediumType_DRY_MEDIUM = {
PyVarObject_HEAD_INIT(&MediumType_Type, 1)
- { Stroke::DRY_MEDIUM }
+ { Stroke::DRY_MEDIUM },
};
PyLongObject _BPy_MediumType_HUMID_MEDIUM = {
PyVarObject_HEAD_INIT(&MediumType_Type, 1)
- { Stroke::HUMID_MEDIUM }
+ { Stroke::HUMID_MEDIUM },
};
PyLongObject _BPy_MediumType_OPAQUE_MEDIUM = {
PyVarObject_HEAD_INIT(&MediumType_Type, 1)
- { Stroke::OPAQUE_MEDIUM }
+ { Stroke::OPAQUE_MEDIUM },
};
//-------------------MODULE INITIALIZATION--------------------------------