Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Sep 20, 2023
1 parent 4d5c2f7 commit 7674f60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions spinnman/spalloc/spalloc_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
from packaging.version import Version
import queue
import requests
import sqlite3
import struct
import threading
from typing import Dict, List, Tuple
Expand Down Expand Up @@ -98,7 +97,8 @@ def __init__(
logger.info("established session to {} for {}", service_url, username)

@staticmethod
def open_job_from_database(service_url, job_url, cookies, headers) -> SpallocJob:
def open_job_from_database(
service_url, job_url, cookies, headers) -> SpallocJob:
"""
Create a job from the description in the attached database. This is
intended to allow for access to the job's allocated resources from
Expand Down
1 change: 0 additions & 1 deletion spinnman/spalloc/spalloc_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from sqlite3 import Cursor
from typing import Dict, Tuple
from spinn_utilities.abstract_base import AbstractBase, abstractmethod
from spinn_utilities.abstract_context_manager import AbstractContextManager
Expand Down

0 comments on commit 7674f60

Please sign in to comment.