Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-01-29 05:51:36 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-01-29 05:51:36 +0300
commit6598f0a25cb0485c6e6fa66964c2d74bf80ff705 (patch)
treea15f2b63048bffbfc4e26a1db0800e2b005d4a29 /io_mesh_atomic
parent9dde6b34b254a3882a1366023eca9792033f9b6c (diff)
Cleanup: trailing space
Diffstat (limited to 'io_mesh_atomic')
-rw-r--r--io_mesh_atomic/__init__.py52
-rw-r--r--io_mesh_atomic/utility_gui.py6
2 files changed, 29 insertions, 29 deletions
diff --git a/io_mesh_atomic/__init__.py b/io_mesh_atomic/__init__.py
index f7ebcb88..d9e13c47 100644
--- a/io_mesh_atomic/__init__.py
+++ b/io_mesh_atomic/__init__.py
@@ -33,13 +33,13 @@
# Acknowledgements
# ================
#
-# A big thank you to all those people who I met in particular in the IRC and
+# A big thank you to all those people who I met in particular in the IRC and
# who helped me a lot.
#
# Blender developers
# ------------------
-# Campbell Barton (ideasman)
-# Brendon Murphy (meta_androcto)
+# Campbell Barton (ideasman)
+# Brendon Murphy (meta_androcto)
# Truman Melton (?) (truman)
# Kilon Alios (kilon)
# ?? (CoDEmanX)
@@ -104,7 +104,7 @@ class AddonPreferences(AddonPreferences):
default=True,
description="Import/export XYZ",
)
- # This boolean is checked in the poll function in PANEL_PT_prepare
+ # This boolean is checked in the poll function in PANEL_PT_prepare
# (see utility.py).
bool_utility : BoolProperty(
name="Utility panel",
@@ -119,7 +119,7 @@ class AddonPreferences(AddonPreferences):
layout.prop(self, "bool_pdb")
layout.prop(self, "bool_xyz")
layout.prop(self, "bool_utility")
-
+
# -----------------------------------------------------------------------------
# Menu
@@ -149,7 +149,7 @@ def menu_func_export_xyz(self, context):
def register():
from bpy.utils import register_class
-
+
register_class(AddonPreferences)
register_class(pdb_gui.IMPORT_OT_pdb)
@@ -162,21 +162,21 @@ def register():
bpy.types.TOPBAR_MT_file_import.append(menu_func_import_xyz)
bpy.types.TOPBAR_MT_file_export.append(menu_func_export_xyz)
- classes = (utility_gui.PANEL_PT_prepare,
+ classes = (utility_gui.PANEL_PT_prepare,
utility_gui.PanelProperties,
- utility_gui.DatafileApply,
- utility_gui.DefaultAtom,
- utility_gui.ReplaceAtom,
- utility_gui.SeparateAtom,
- utility_gui.DistanceButton,
- utility_gui.RadiusAllBiggerButton,
- utility_gui.RadiusAllSmallerButton,
- utility_gui.SticksAllBiggerButton,
+ utility_gui.DatafileApply,
+ utility_gui.DefaultAtom,
+ utility_gui.ReplaceAtom,
+ utility_gui.SeparateAtom,
+ utility_gui.DistanceButton,
+ utility_gui.RadiusAllBiggerButton,
+ utility_gui.RadiusAllSmallerButton,
+ utility_gui.SticksAllBiggerButton,
utility_gui.SticksAllSmallerButton)
from bpy.utils import register_class
utility_panel.read_elements()
for cls in classes:
- register_class(cls)
+ register_class(cls)
scene = bpy.types.Scene
scene.atom_blend = bpy.props.PointerProperty(type=utility_gui.PanelProperties)
@@ -197,19 +197,19 @@ def unregister():
bpy.types.TOPBAR_MT_file_import.remove(menu_func_import_xyz)
bpy.types.TOPBAR_MT_file_export.remove(menu_func_export_xyz)
- classes = (utility_gui.PANEL_PT_prepare,
+ classes = (utility_gui.PANEL_PT_prepare,
utility_gui.PanelProperties,
- utility_gui.DatafileApply,
- utility_gui.DefaultAtom,
- utility_gui.ReplaceAtom,
- utility_gui.SeparateAtom,
- utility_gui.DistanceButton,
- utility_gui.RadiusAllBiggerButton,
- utility_gui.RadiusAllSmallerButton,
- utility_gui.SticksAllBiggerButton,
+ utility_gui.DatafileApply,
+ utility_gui.DefaultAtom,
+ utility_gui.ReplaceAtom,
+ utility_gui.SeparateAtom,
+ utility_gui.DistanceButton,
+ utility_gui.RadiusAllBiggerButton,
+ utility_gui.RadiusAllSmallerButton,
+ utility_gui.SticksAllBiggerButton,
utility_gui.SticksAllSmallerButton)
for cls in classes:
- unregister_class(cls)
+ unregister_class(cls)
# -----------------------------------------------------------------------------
diff --git a/io_mesh_atomic/utility_gui.py b/io_mesh_atomic/utility_gui.py
index 27f283b1..97395036 100644
--- a/io_mesh_atomic/utility_gui.py
+++ b/io_mesh_atomic/utility_gui.py
@@ -22,7 +22,7 @@ from bpy.props import (StringProperty,
EnumProperty,
FloatProperty,
BoolProperty)
-
+
from io_mesh_atomic.utility_panel import choose_objects
from io_mesh_atomic.utility_panel import custom_datafile
from io_mesh_atomic.utility_panel import custom_datafile_change_atom_props
@@ -43,7 +43,7 @@ class PANEL_PT_prepare(Panel):
bl_idname = "ATOMIC_PT_utilities"
- # This thing here just guarantees that the panel is NOT opened when the
+ # This thing here just guarantees that the panel is NOT opened when the
# check box in the addon preferences is not activated! See __init__.py
@classmethod
def poll(cls, context):
@@ -66,7 +66,7 @@ class PANEL_PT_prepare(Panel):
col.operator("atom_blend.button_distance")
col.prop(scn, "distance")
- # This is from Blender 2.79 and does not work in 2.80. However, it
+ # This is from Blender 2.79 and does not work in 2.80. However, it
# might be useful later on if changed.
#
#box = layout.box()