diff --git a/rigify/legacy/rigs/basic/copy.py b/rigify/legacy/rigs/basic/copy.py
index 65c5ff3172b739357269a1b40ac8edf5cf2793ae..50a25767df1769374e8376ea9a2d86afb76e8fad 100644
--- a/rigify/legacy/rigs/basic/copy.py
+++ b/rigify/legacy/rigs/basic/copy.py
@@ -88,8 +88,8 @@ def add_parameters(params):
     """ Add the parameters of this rig type to the
         RigifyParameters PropertyGroup
     """
-    params.make_control: bpy.props.BoolProperty(name="Control", default=True, description="Create a control bone for the copy")
-    params.make_deform: bpy.props.BoolProperty(name="Deform", default=True, description="Create a deform bone for the copy")
+    params.make_control = bpy.props.BoolProperty(name="Control", default=True, description="Create a control bone for the copy")
+    params.make_deform = bpy.props.BoolProperty(name="Deform", default=True, description="Create a deform bone for the copy")
 
 
 def parameters_ui(layout, params):
diff --git a/rigify/legacy/rigs/basic/copy_chain.py b/rigify/legacy/rigs/basic/copy_chain.py
index 25013c0e371c5d6a24ecd37d6929db7418be00c9..4e4262846924799500f8c936e50f020ae9b18e54 100644
--- a/rigify/legacy/rigs/basic/copy_chain.py
+++ b/rigify/legacy/rigs/basic/copy_chain.py
@@ -127,8 +127,8 @@ def add_parameters(params):
     """ Add the parameters of this rig type to the
         RigifyParameters PropertyGroup
     """
-    params.make_controls: bpy.props.BoolProperty(name="Controls", default=True, description="Create control bones for the copy")
-    params.make_deforms: bpy.props.BoolProperty(name="Deform", default=True, description="Create deform bones for the copy")
+    params.make_controls = bpy.props.BoolProperty(name="Controls", default=True, description="Create control bones for the copy")
+    params.make_deforms = bpy.props.BoolProperty(name="Deform", default=True, description="Create deform bones for the copy")
 
 
 def parameters_ui(layout, params):
diff --git a/rigify/legacy/rigs/pitchipoy/super_copy.py b/rigify/legacy/rigs/pitchipoy/super_copy.py
index 5a60ed0433c21c48e657cf7bfba24094870836b6..27e887750ce5c369e36f1cbfa9f62a0408fba3eb 100644
--- a/rigify/legacy/rigs/pitchipoy/super_copy.py
+++ b/rigify/legacy/rigs/pitchipoy/super_copy.py
@@ -91,7 +91,7 @@ def add_parameters(params):
     """ Add the parameters of this rig type to the
         RigifyParameters PropertyGroup
     """
-    params.make_control: bpy.props.BoolProperty(
+    params.make_control = bpy.props.BoolProperty(
         name        = "Control",
         default     = True,
         description = "Create a control bone for the copy"
diff --git a/rigify/legacy/rigs/pitchipoy/super_face.py b/rigify/legacy/rigs/pitchipoy/super_face.py
index 919f8439732a6de6c892ac035bb171190f10d84e..c999ae9af6b36e1a9fdf096448639bcfa7aa0bb0 100644
--- a/rigify/legacy/rigs/pitchipoy/super_face.py
+++ b/rigify/legacy/rigs/pitchipoy/super_face.py
@@ -1016,26 +1016,26 @@ def add_parameters(params):
     """
 
     #Setting up extra layers for the tweak bones
-    params.primary_layers_extra: bpy.props.BoolProperty(
+    params.primary_layers_extra = bpy.props.BoolProperty(
         name        = "primary_layers_extra",
         default     = True,
         description = ""
-    )
-    params.primary_layers: bpy.props.BoolVectorProperty(
+        )
+    params.primary_layers = bpy.props.BoolVectorProperty(
         size        = 32,
         description = "Layers for the 1st tweak controls to be on",
         default     = tuple( [ i == 1 for i in range(0, 32) ] )
-    )
-    params.secondary_layers_extra: bpy.props.BoolProperty(
+        )
+    params.secondary_layers_extra = bpy.props.BoolProperty(
         name        = "secondary_layers_extra",
         default     = True,
         description = ""
-    )
-    params.secondary_layers: bpy.props.BoolVectorProperty(
+        )
+    params.secondary_layers = bpy.props.BoolVectorProperty(
         size        = 32,
         description = "Layers for the 2nd tweak controls to be on",
         default     = tuple( [ i == 1 for i in range(0, 32) ] )
-    )
+        )
 
 
 def parameters_ui(layout, params):