From dbc058301bf516a53b92b9c45b5c4f3ecc33ecf4 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 16 Apr 2019 16:40:47 +0200 Subject: Cleanup: trailing commas --- source/blender/freestyle/intern/python/BPy_MediumType.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/freestyle/intern/python/BPy_MediumType.cpp') 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-------------------------------- -- cgit v1.2.3