Skip to content

Commit

Permalink
[FIX] Typing Errors
Browse files Browse the repository at this point in the history
  • Loading branch information
PauAndrio committed May 13, 2024
1 parent 1a3312e commit 583cd99
Show file tree
Hide file tree
Showing 3 changed files with 88 additions and 88 deletions.
2 changes: 1 addition & 1 deletion biobb_common/generic/biobb_object.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def __init__(self, properties=None, **kwargs) -> None: # type: ignore
self.remove_tmp: bool = properties.get("remove_tmp", True)
self.restart: bool = properties.get("restart", False)
self.cmd: List[str] = []
self.return_code: Optional[int] = None
self.return_code: int = 0
self.tmp_files: List[Union[str, Path]] = []
self.env_vars_dict: typing.Dict = properties.get(
"env_vars_dict", {})
Expand Down
Loading

0 comments on commit 583cd99

Please sign in to comment.