Skip to content

Commit

Permalink
fix(api-client): lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nfrasser committed Dec 16, 2024
1 parent 5e29028 commit a0fc1a7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions cryosparc/json_util.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from pathlib import PurePath
import base64
from typing import Any, Mapping
import numpy as n
from datetime import datetime
from pathlib import PurePath
from typing import Any, Mapping

import numpy as n
from pydantic import BaseModel


Expand Down
6 changes: 3 additions & 3 deletions cryosparc/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
JSON responses. Used for either cryosparc-tools or cryosparc models.
"""

import os
from collections.abc import Iterable
import re
from collections.abc import Iterable
from enum import Enum
from inspect import isclass
from types import ModuleType
from typing import Dict, Optional, Type
from .stream import Streamable

from pydantic import BaseModel

from .stream import Streamable

FINALIZED: bool = False
REGISTERED_TYPED_DICTS: Dict[str, Type[dict]] = {}
REGISTERED_ENUMS: Dict[str, Type[Enum]] = {}
Expand Down

0 comments on commit a0fc1a7

Please sign in to comment.