Tachi67 commited on
Commit
9101c41
·
1 Parent(s): e11f27d

Update CodeFileEditorAtomicFlow.py

Browse files
Files changed (1) hide show
  1. CodeFileEditorAtomicFlow.py +2 -2
CodeFileEditorAtomicFlow.py CHANGED
@@ -5,8 +5,8 @@ from flow_modules.Tachi67.InterpreterFlowModule import InterpreterAtomicFlow
5
 
6
  class CodeFileEditorAtomicFlow(InterpreterAtomicFlow):
7
 
8
- def __init__(self):
9
- super().__init__()
10
  self.file_type = {
11
  "python": "py",
12
  "bash": "sh",
 
5
 
6
  class CodeFileEditorAtomicFlow(InterpreterAtomicFlow):
7
 
8
+ def __init__(self, **kwargs):
9
+ super().__init__(**kwargs)
10
  self.file_type = {
11
  "python": "py",
12
  "bash": "sh",