mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-07-27 23:47:46 +00:00
fix: Set default value for 'entry' parameter in Env.run method (#643)
This commit is contained in:
Regular → Executable
Regular → Executable
@@ -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.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user