Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Sep 17, 2024
1 parent 364ed12 commit 05eec49
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/otaclient/_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@

from dataclasses import dataclass
from enum import Enum
from typing import ClassVar, Optional
from typing import ClassVar

from _otaclient_version import __version__

from otaclient.configs.ecu_info import ecu_info

#
Expand Down
2 changes: 1 addition & 1 deletion src/otaclient/boot_control/_grub.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
from subprocess import CalledProcessError
from typing import ClassVar, Dict, Generator, List, Optional, Tuple

from otaclient._types import OTAStatus
from otaclient import errors as ota_errors
from otaclient._types import OTAStatus
from otaclient_common.common import (
re_symlink_atomic,
read_str_from_file,
Expand Down
2 changes: 1 addition & 1 deletion src/otaclient/boot_control/_jetson_cboot.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
from pathlib import Path
from typing import Generator, Optional

from otaclient._types import OTAStatus
from otaclient import errors as ota_errors
from otaclient._types import OTAStatus
from otaclient.app.configs import config as cfg
from otaclient.boot_control._firmware_package import (
FirmwareManifest,
Expand Down
2 changes: 1 addition & 1 deletion src/otaclient/boot_control/_jetson_uefi.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
from pydantic import BaseModel
from typing_extensions import Self

from otaclient._types import OTAStatus
from otaclient import errors as ota_errors
from otaclient._types import OTAStatus
from otaclient.app.configs import config as cfg
from otaclient.boot_control._firmware_package import (
FirmwareManifest,
Expand Down

0 comments on commit 05eec49

Please sign in to comment.