Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
cjh1 committed Apr 10, 2024
1 parent 376fe1f commit 66ce0c9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/sfapi_client/_async/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -516,5 +516,6 @@ def resources(self) -> AsyncResources:
# Ensure that the job models are built, we need to import here to
# avoid circular imports
from .jobs import AsyncJobSacct, AsyncJobSqueue

AsyncJobSqueue.model_rebuild()
AsyncJobSacct.model_rebuild()
AsyncJobSacct.model_rebuild()
5 changes: 4 additions & 1 deletion src/sfapi_client/_async/paths.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,10 @@ async def download(self, binary=False) -> IO[AnyStr]:

@staticmethod
async def _ls(
compute: "Compute", path, directory=False, filter_dots=True # noqa: F821
compute: "Compute",
path,
directory=False,
filter_dots=True, # noqa: F821
) -> List["RemotePath"]: # noqa: F821
r = await compute.client.get(f"utilities/ls/{compute.name}/{path}")

Expand Down
3 changes: 2 additions & 1 deletion src/sfapi_client/_async/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ class AsyncUser(UserBase):
@staticmethod
@check_auth
async def _fetch_user(
client: "AsyncClient", username: Optional[str] = None # noqa: F821
client: "AsyncClient",
username: Optional[str] = None, # noqa: F821
): # noqa: F821
url = "account/"
if username is not None:
Expand Down

0 comments on commit 66ce0c9

Please sign in to comment.