Skip to content

Commit

Permalink
Fix a few lints
Browse files Browse the repository at this point in the history
  • Loading branch information
jennydaman committed Jul 23, 2024
1 parent c3dcc0d commit 335143a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/aiochris/models/public.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@

import sys
from dataclasses import dataclass
from typing import Optional, Literal, TextIO, Any
from typing import Optional, Literal, TextIO

import serde
from serde import deserialize

from aiochris.enums import PluginType
from aiochris.link import http
from aiochris.link.linked import LinkedModel
from aiochris.enums import PluginType
from aiochris.types import *
from aiochris.util.search import Search

Expand Down
6 changes: 3 additions & 3 deletions tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,9 @@ async def new_compute_resource(
"""
created_compute_resource = await admin_client.create_compute_resource(
name=f"test-aiochris-{now_str}-cr",
compute_url=f"http://localhost:56965/does-not-exist/api/v1/",
compute_user=f"pfcon",
compute_password=f"pfcon1234",
compute_url="http://localhost:56965/does-not-exist/api/v1/",
compute_user="pfcon",
compute_password="pfcon1234",
description="a fake compute resource for testing aiochris.",
)
search = await normal_client.search_compute_resources(
Expand Down

0 comments on commit 335143a

Please sign in to comment.