Skip to content

Commit bbdeabb

Browse files
committed
We should really implement these. In the mean time, fix linter complaint.
1 parent cf1175c commit bbdeabb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/psij/executors/batch/batch_scheduler_executor.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -542,6 +542,7 @@ def _delete_aux_file(self, job: Optional[Job] = None, suffix: Optional[str] = No
542542
if force or path.exists():
543543
path.unlink()
544544

545+
545546
def list(self) -> List[str]:
546547
"""Returns a list of jobs known to the underlying implementation.
547548
@@ -551,7 +552,7 @@ def list(self) -> List[str]:
551552
Implementations are encouraged to restrict the results to jobs accessible by the current
552553
user.
553554
"""
554-
pass
555+
raise NotImplementedError()
555556

556557

557558
class _QueuePollThread(Thread):

0 commit comments

Comments
 (0)