Skip to content

Commit eae4e38

Browse files
committed
Cleanup pprint
1 parent 7aec668 commit eae4e38

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

Cider/CiderMaterial.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import bpy
22
from . CiderUtils import is_cider_active
3-
from pprint import pprint
43

54
_PARAMS = None
65

Cider/CiderRenderer.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,6 @@ def render(self, context, depsgraph):
216216
image.generated_color = [0, 0, 0, 0]
217217
colorspaces = bpy.types.ColorManagedInputColorspaceSettings.bl_rna.properties["name"].enum_items
218218
image.colorspace_settings.name = "Linear" if "Linear" in colorspaces else "Linear Rec.709"
219-
220219
image.source = "GENERATED"
221220
image.use_generated_float = True
222221
image.alpha_mode = "PREMUL"

Cider/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class CiderDebugOperator(bpy.types.Operator):
4646
bl_label = "Cider Debug"
4747

4848
def execute(self, context):
49-
import pprint
49+
#import pprint
5050
#pprint.pprint(context.scene.cider.enabled)
5151
return{"FINISHED"}
5252

0 commit comments

Comments
 (0)