Skip to content

Commit

Permalink
Fix mypy unused ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-el committed Aug 31, 2023
1 parent 57d93d6 commit b35e8a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ert/job_queue/job_queue_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def timed_out(self) -> bool:

@property
def submit_attempt(self) -> int:
return self._get_submit_attempt() # type: ignore
return self._get_submit_attempt()

def _poll_queue_status(self, driver: "Driver") -> JobStatus:
result, msg = _refresh_status(self, driver)
Expand All @@ -181,7 +181,7 @@ def thread_status(self) -> ThreadStatus:
return self._thread_status

def submit(self, driver: "Driver") -> SubmitStatus:
return self._submit(driver) # type: ignore
return self._submit(driver)

def run_done_callback(self) -> Optional[LoadStatus]:
if sys.platform == "linux":
Expand Down

0 comments on commit b35e8a7

Please sign in to comment.