FixedReplyAtomicFlow -> FixedReplyFlow
#4
by
yeeef
- opened
- FixedReply_CodeReflect.py +2 -2
- FixedReply_PlanReflect.py +2 -2
FixedReply_CodeReflect.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
-
from flows.base_flows import
|
2 |
|
3 |
|
4 |
-
class FixedReply_CodeReflect(
|
5 |
def __init__(self, **kwargs):
|
6 |
super().__init__(**kwargs)
|
|
|
1 |
+
from flows.base_flows import FixedReplyFlow
|
2 |
|
3 |
|
4 |
+
class FixedReply_CodeReflect(FixedReplyFlow):
|
5 |
def __init__(self, **kwargs):
|
6 |
super().__init__(**kwargs)
|
FixedReply_PlanReflect.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
-
from flows.base_flows import
|
2 |
|
3 |
|
4 |
-
class FixedReply_PlanReflect(
|
5 |
def __init__(self, **kwargs):
|
6 |
super().__init__(**kwargs)
|
|
|
1 |
+
from flows.base_flows import FixedReplyFlow
|
2 |
|
3 |
|
4 |
+
class FixedReply_PlanReflect(FixedReplyFlow):
|
5 |
def __init__(self, **kwargs):
|
6 |
super().__init__(**kwargs)
|