Skip to content

Commit

Permalink
fix some linting
Browse files Browse the repository at this point in the history
  • Loading branch information
JHolba committed Aug 28, 2023
1 parent 8b2f575 commit 822b37c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions tests/unit_tests/job_queue/test_job_queue_manager.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
import os
import stat
from dataclasses import dataclass
from pathlib import Path
from threading import BoundedSemaphore
from types import SimpleNamespace
from typing import Callable, List, TypedDict, Any, Optional
from unittest.mock import MagicMock
from typing import Any, Callable, List, Optional, TypedDict

import pytest

Expand Down Expand Up @@ -33,7 +31,7 @@ def dummy_ok_callback(
refcase_file: Optional[str],
response_configs: Any,
):
print(f"success")
print("success")
(Path(runpath) / "OK").write_text("success", encoding="utf-8")
return (LoadStatus.LOAD_SUCCESSFUL, "")

Expand Down

0 comments on commit 822b37c

Please sign in to comment.