fix: Set default value for 'entry' parameter in Env.run method (#643)

This commit is contained in:
you-n-g
2025-02-26 16:51:38 +08:00
committed by GitHub
parent 84fe89d2b5
commit e3d6361ae9
3 changed files with 1 additions and 1 deletions
View File
View File
+1 -1
View File
@@ -61,7 +61,7 @@ class Env(Generic[ASpecificBaseModel]):
Prepare for the environment based on it's configure
"""
def run(self, entry: str | None, local_path: str = ".", env: dict | None = None, **kwargs: dict) -> str:
def run(self, entry: str | None = None, local_path: str = ".", env: dict | None = None, **kwargs: dict) -> str:
"""
Run the folder under the environment.