Skip to content

Commit deaea27

Browse files
committed
Fix copyright years
1 parent 0f6c6a2 commit deaea27

File tree

6 files changed

+6
-10
lines changed

6 files changed

+6
-10
lines changed

.spdx-license-header.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
SPDX-FileCopyrightText: 2023-present MTS PJSC
1+
SPDX-FileCopyrightText: 2025-present MTS PJSC
22
SPDX-License-Identifier: Apache-2.0

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2023-2025 MTS PJSC. All rights reserved.
1+
Copyright 2023-present MTS PJSC. All rights reserved.
22

33
Apache License
44
Version 2.0, January 2004

docker/download_ivy2_packages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
# SPDX-FileCopyrightText: 2024-2025 MTS PJSC
2+
# SPDX-FileCopyrightText: 2025-present MTS PJSC
33
# SPDX-License-Identifier: Apache-2.0
44

55
from __future__ import annotations

syncmaster/db/repositories/search.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: 2024-2025 MTS PJSC
1+
# SPDX-FileCopyrightText: 2025-present MTS PJSC
22
# SPDX-License-Identifier: Apache-2.0
33
from collections.abc import Sequence
44
from enum import IntFlag
@@ -38,16 +38,12 @@ def ts_rank(search_vector: InstrumentedAttribute, ts_query: ColumnElement) -> Co
3838

3939
def make_tsquery(user_input: str) -> ColumnElement:
4040
"""Convert user input to tsquery.
41-
4241
- wraps tokens with `:*` for prefix matching,
4342
- combines unstemmed 'simple' query with stemmed 'russian' via OR.
4443
"""
4544
simple_query = func.to_tsquery("simple", build_tsquery(user_input))
46-
4745
stemmed_query = func.plainto_tsquery("russian", user_input)
48-
4946
combined_query = simple_query.op("||")(stemmed_query)
50-
5147
return combined_query
5248

5349

syncmaster/server/providers/auth/oauth2_gateway_provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
1+
# SPDX-FileCopyrightText: 2025-present MTS PJSC
22
# SPDX-License-Identifier: Apache-2.0
33
import logging
44
from typing import Annotated, Any

syncmaster/server/settings/auth/oauth2_gateway.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: 2023-2025 MTS PJSC
1+
# SPDX-FileCopyrightText: 2025-present MTS PJSC
22
# SPDX-License-Identifier: Apache-2.0
33
from pydantic import BaseModel, Field, HttpUrl, SecretStr
44

0 commit comments

Comments
 (0)