Skip to content

Commit

Permalink
PEP8 changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
muhuk committed Sep 26, 2023
1 parent e0d9854 commit 454257e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion meshstats/props.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ class MeshstatsAddonPreferences(bpy.types.AddonPreferences):

flat_threshold_angle: bpy.props.FloatProperty(
name="flat_threshold_angle",
description="Maximum average angle (in degrees) between faces to be considered a flat surface.",
description="Maximum average angle (in degrees) between"
+ " faces to be considered a flat surface.",
default=constants.FLAT_THRESHOLD_ANGLE_DEFAULT,
min=0.0,
max=90.0
Expand Down
4 changes: 3 additions & 1 deletion meshstats/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@ def draw(self, context: bpy.types.Context) -> None:
icon='QUIT'
)
case mesh.Eligibility.MODIFIER:
self.layout.label(text="Disabled by modifier on this object.")
self.layout.label(
text="Disabled by modifier on this object."
)
self.layout.operator(
"object.meshstats_disable_object",
icon='QUIT'
Expand Down

0 comments on commit 454257e

Please sign in to comment.