Skip to content

Commit

Permalink
reorder imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Jun 27, 2024
1 parent 6b2fa2c commit 4508986
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion spalloc_client/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,10 @@
"""
import configparser
import os.path
import appdirs
from typing import Any, Dict, List, Optional

import appdirs

# The application name to use in config file names
_name = "spalloc"

Expand Down
3 changes: 2 additions & 1 deletion spalloc_client/scripts/ps.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,11 @@
import argparse
import sys

from spinn_utilities.typing.json import JsonObject

from spalloc_client import __version__, JobState, ProtocolClient
from spalloc_client.term import Terminal, render_table
from spalloc_client._utils import render_timestamp
from spinn_utilities.typing.json import JsonObject
from .support import Script


Expand Down

0 comments on commit 4508986

Please sign in to comment.