[Bf-blender-cvs] [6196b6df926] soc-2020-testing-frameworks: Added misisng space before parameter type in doc string

Himanshi Kalra noreply at git.blender.org
Tue Dec 15 18:07:54 CET 2020


Commit: 6196b6df926cbb69fc0ed655b6135f7d9d5fa080
Author: Himanshi Kalra
Date:   Sun Sep 27 16:22:12 2020 +0530
Branches: soc-2020-testing-frameworks
https://developer.blender.org/rB6196b6df926cbb69fc0ed655b6135f7d9d5fa080

Added misisng space before parameter type in doc string

===================================================================

M	tests/python/modules/mesh_test.py

===================================================================

diff --git a/tests/python/modules/mesh_test.py b/tests/python/modules/mesh_test.py
index b9be8681e7f..bd916df7251 100644
--- a/tests/python/modules/mesh_test.py
+++ b/tests/python/modules/mesh_test.py
@@ -62,7 +62,7 @@ class ModifierSpec:
         :param modifier_name: str - name of object modifier, e.g. "myFirstSubsurfModif"
         :param modifier_type: str - type of object modifier, e.g. "SUBSURF"
         :param modifier_parameters: dict - {name : val} dictionary giving modifier parameters, e.g. {"quality" : 4}
-        :param frame_end:int - frame at which simulation needs to be baked or modifier needs to be applied.
+        :param frame_end: int - frame at which simulation needs to be baked or modifier needs to be applied.
         """
         self.modifier_name = modifier_name
         self.modifier_type = modifier_type
@@ -85,7 +85,7 @@ class ParticleSystemSpec:
         :param modifier_name: str - name of object modifier, e.g. "Particles"
         :param modifier_type: str - type of object modifier, e.g. "PARTICLE_SYSTEM"
         :param modifier_parameters: dict - {name : val} dictionary giving modifier parameters, e.g. {"seed" : 1}
-        :param frame_end:int - the last frame of the simulation at which the modifier is applied
+        :param frame_end: int - the last frame of the simulation at which the modifier is applied
         """
         self.modifier_name = modifier_name
         self.modifier_type = modifier_type



More information about the Bf-blender-cvs mailing list