From 378ee2c7a6c96cef891756918b5e7e431dd53718 Mon Sep 17 00:00:00 2001 From: Gilles DAVID Date: Fri, 31 Mar 2017 10:21:07 +0200 Subject: [PATCH] [PY3] Fix tab/space mix --- src/Macro/annotate_groups.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Macro/annotate_groups.py b/src/Macro/annotate_groups.py index 8f0bd018..c1a4cf2d 100644 --- a/src/Macro/annotate_groups.py +++ b/src/Macro/annotate_groups.py @@ -243,9 +243,9 @@ if data.GetDataObjectType() == vtkDataObjectTypes.GetTypeIdFromClassName("vtkMul # Check that PointSprite plugin is available if hasattr(representation, "MaxPixelSize"): - activeRepresentation = 'Point Sprite' - if representation.MaxPixelSize == 64: - representation.MaxPixelSize = 8 + activeRepresentation = 'Point Sprite' + if representation.MaxPixelSize == 64: + representation.MaxPixelSize = 8 else: activeRepresentation = 'Points' -- 2.39.2