From a65fb173355bca667432eab461bbbd08519ce1ae Mon Sep 17 00:00:00 2001 From: Ankit Meel Date: Fri, 12 Feb 2021 10:31:55 +0530 Subject: Cleanup: Remove trailing period in descriptions. Reduces warnings while running tests. Also fix some descriptions with strings concatenated but without a space in between. Reviewed by campbellbarton Differential Revision: https://developer.blender.org/D9655 --- precision_drawing_tools/pdt_view.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'precision_drawing_tools/pdt_view.py') diff --git a/precision_drawing_tools/pdt_view.py b/precision_drawing_tools/pdt_view.py index eaa2e72e..352620ff 100644 --- a/precision_drawing_tools/pdt_view.py +++ b/precision_drawing_tools/pdt_view.py @@ -211,7 +211,7 @@ class PDT_OT_ViewIso(Operator): bl_idname = "pdt.viewiso" bl_label = "Isometric View" bl_options = {"REGISTER", "UNDO"} - bl_description = "Isometric View." + bl_description = "Isometric View" def execute(self, context): """Set Isometric View. @@ -238,7 +238,7 @@ class PDT_OT_Reset3DView(Operator): bl_idname = "pdt.reset_3d_view" bl_label = "Reset 3D View" bl_options = {"REGISTER", "UNDO"} - bl_description = "Reset 3D View to Blender Defaults." + bl_description = "Reset 3D View to Blender Defaults" def execute(self, context): """Reset 3D View to Blender Defaults. -- cgit v1.2.3