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 Jan 6, 2025
1 parent 98c8c00 commit 1c00e3a
Show file tree
Hide file tree
Showing 181 changed files with 181 additions and 181 deletions.
2 changes: 1 addition & 1 deletion syncmaster/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0

_raw_version = "0.1.6"
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
2 changes: 1 addition & 1 deletion syncmaster/db/factory.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from collections.abc import AsyncGenerator, Callable
from typing import Any
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/migrations/__main__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/env python3

# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0

from __future__ import annotations
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/migrations/env.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
import asyncio
import os
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
"""Create user table
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
"""Create group table
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
"""Create queue table
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
"""Create connection table
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
"""Create user_group table
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
"""Create auth_data table
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
"""Create transfer table
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
"""Create run table
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
"""Create celery_taskmeta and celery_tasksetmeta tables
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
"""Add pg_trgm extension to apply fuzzy search
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
"""Create apscheduler table
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/migrations/versions/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
2 changes: 1 addition & 1 deletion syncmaster/db/mixins/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from syncmaster.db.mixins.deletable import DeletableMixin
from syncmaster.db.mixins.resource import ResourceMixin
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/mixins/deletable.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0

from sqlalchemy import Boolean
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/mixins/resource.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0

from sqlalchemy import BigInteger, ForeignKey, String
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/mixins/timestamp.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from datetime import datetime

Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from syncmaster.db.models.apscheduler_job import APSchedulerJob
from syncmaster.db.models.auth_data import AuthData
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/models/apscheduler_job.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from sqlalchemy import Float, Index, LargeBinary, String
from sqlalchemy.orm import Mapped, mapped_column
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/models/auth_data.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from __future__ import annotations

Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/models/base.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
import re

Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/models/connection.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from __future__ import annotations

Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/models/group.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from __future__ import annotations

Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/models/queue.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from __future__ import annotations

Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/models/run.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from __future__ import annotations

Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/models/transfer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from __future__ import annotations

Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/models/user.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from __future__ import annotations

Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/repositories/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0

from syncmaster.db.repositories.connection import ConnectionRepository
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/repositories/base.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from abc import ABC
from typing import Any, Generic, TypeVar
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/repositories/connection.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from typing import Any, NoReturn

Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/repositories/credentials_repository.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from __future__ import annotations

Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/repositories/group.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
import re
from typing import NoReturn
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/repositories/queue.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from typing import NoReturn

Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/repositories/repository_with_owner.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from typing import Generic, TypeVar

Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/repositories/run.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from datetime import datetime
from typing import Any, NoReturn
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/repositories/transfer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from collections.abc import Sequence
from typing import Any, NoReturn
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/repositories/user.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from typing import Any, NoReturn

Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/repositories/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from __future__ import annotations

Expand Down
2 changes: 1 addition & 1 deletion syncmaster/db/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
import math
from collections.abc import Sequence
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/dto/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
2 changes: 1 addition & 1 deletion syncmaster/dto/connections.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from dataclasses import dataclass
from typing import ClassVar
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/dto/transfers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
import json
from dataclasses import dataclass
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/errors/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from syncmaster.errors.base import BaseErrorSchema
from syncmaster.errors.registration import (
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/errors/base.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from typing import Any, Generic, TypeVar

Expand Down
2 changes: 1 addition & 1 deletion syncmaster/errors/registration.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from __future__ import annotations

Expand Down
2 changes: 1 addition & 1 deletion syncmaster/errors/schemas/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from syncmaster.errors.schemas.bad_request import BadRequestSchema
from syncmaster.errors.schemas.invalid_request import InvalidRequestSchema
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/errors/schemas/bad_request.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
import http

Expand Down
2 changes: 1 addition & 1 deletion syncmaster/errors/schemas/invalid_request.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
import http
from typing import Any, Literal
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/errors/schemas/not_authorized.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
import http
from typing import Any, Literal
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/exceptions/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from syncmaster.exceptions.base import (
ActionNotAllowedError,
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/exceptions/auth.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from typing import Any

Expand Down
2 changes: 1 addition & 1 deletion syncmaster/exceptions/base.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
class SyncmasterError(Exception):
pass
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/exceptions/connection.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from syncmaster.exceptions.base import EntityNotFoundError, SyncmasterError

Expand Down
2 changes: 1 addition & 1 deletion syncmaster/exceptions/credentials.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from syncmaster.exceptions import SyncmasterError

Expand Down
2 changes: 1 addition & 1 deletion syncmaster/exceptions/group.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from syncmaster.exceptions.base import SyncmasterError

Expand Down
2 changes: 1 addition & 1 deletion syncmaster/exceptions/queue.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from syncmaster.exceptions.base import EntityNotFoundError, SyncmasterError

Expand Down
2 changes: 1 addition & 1 deletion syncmaster/exceptions/redirect.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0

from syncmaster.exceptions.base import SyncmasterError
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/exceptions/run.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from syncmaster.db.models import Status
from syncmaster.exceptions.base import EntityNotFoundError, SyncmasterError
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/exceptions/transfer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from typing import Literal

Expand Down
2 changes: 1 addition & 1 deletion syncmaster/exceptions/user.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from syncmaster.exceptions.base import SyncmasterError

Expand Down
2 changes: 1 addition & 1 deletion syncmaster/scheduler/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from celery import Celery

Expand Down
2 changes: 1 addition & 1 deletion syncmaster/scheduler/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
import asyncio
import logging
Expand Down
2 changes: 1 addition & 1 deletion syncmaster/scheduler/celery.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
# SPDX-License-Identifier: Apache-2.0
from syncmaster.scheduler import celery_factory
from syncmaster.scheduler.settings import SchedulerAppSettings
Expand Down
Loading

0 comments on commit 1c00e3a

Please sign in to comment.