Skip to content

Commit fef2bb6

Browse files
committed
refact(op, pipe): drop Plottable subclass already in Op
1 parent bd43f9c commit fef2bb6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

graphtik/op.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ def strip_sideffecteds(dep):
214214
return deps, deps
215215

216216

217-
class FunctionalOperation(Operation, Plottable):
217+
class FunctionalOperation(Operation):
218218
"""
219219
An :term:`operation` performing a callable (ie a function, a method, a lambda).
220220

graphtik/pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def parent_wrapper(ren_args: RenArgs) -> str:
114114
return Network(*merge_set)
115115

116116

117-
class Pipeline(Operation, Plottable):
117+
class Pipeline(Operation):
118118
"""
119119
An operation that can :term:`compute` a network-graph of operations.
120120

0 commit comments

Comments
 (0)