Skip to content

Commit 8118405

Browse files
committed
fix lint
Signed-off-by: Mustafa974 <920998500@qq.com>
1 parent 3e65cde commit 8118405

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lazyllm/common/globals.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ class Globals(metaclass=SingletonABCMeta):
135135
usage={},
136136
trace={},
137137
config={},
138-
call_stack=[
138+
call_stack=[]
139139
)
140140

141141
def __new__(cls, *args, **kw):

lazyllm/flow/flow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ def __call__(self, *args, **kw):
234234

235235
try:
236236
with globals.stack_enter(self.identities):
237-
output = self._run(args[0] if len(args) == 1 else package(args), **kw)
237+
output = self._run(args[0] if len(args) == 1 else package(args), **kw)
238238
if self.post_action is not None: self.invoke(self.post_action, output)
239239
if self._sync: self.wait()
240240
r = self._post_process(output)

0 commit comments

Comments
 (0)