Skip to content

Commit bc9bf9e

Browse files
committed
Run and apply pre-commit autoupdate
No effects were observed on Make-managed files. Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
1 parent cfa04fa commit bc9bf9e

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repos:
1010
- --no-ensure-ascii
1111
- --no-sort-keys
1212
- repo: https://github.com/psf/black
13-
rev: 25.1.0
13+
rev: 26.1.0
1414
hooks:
1515
- id: black
1616
- repo: https://github.com/pycqa/flake8
@@ -20,7 +20,7 @@ repos:
2020
args:
2121
- --extend-ignore=E203,E501,F401,F403
2222
- repo: https://github.com/pycqa/isort
23-
rev: 6.0.1
23+
rev: 7.0.0
2424
hooks:
2525
- id: isort
2626
name: isort (python)

tests/test_duplicate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@ def test_app_name() -> None:
9696
def test_geo_coordinates() -> None:
9797
geo_coordinates: list[str] = list()
9898
geo_objects: list[dict[str, Any]] = list()
99-
(lat_1, long_1, uuid_1) = (56.47267913, -71.17069244, "kb:" + str(uuid.uuid4()))
99+
lat_1, long_1, uuid_1 = (56.47267913, -71.17069244, "kb:" + str(uuid.uuid4()))
100100
check_geo_coordinates(lat_1, long_1, geo_coordinates, geo_objects, uuid_1)
101101
# print(f"\n 1) FT geo_coordinates={geo_coordinates}")
102102
assert geo_coordinates == [str(lat_1) + "#" + str(long_1)]
103-
(lat_2, long_2, uuid_2) = (88.26801306, 13.21980922, "kb:" + str(uuid.uuid4()))
103+
lat_2, long_2, uuid_2 = (88.26801306, 13.21980922, "kb:" + str(uuid.uuid4()))
104104
check_geo_coordinates(lat_2, long_2, geo_coordinates, geo_objects, uuid_2)
105105
# print(f"\n 2) FT geo_coordinates={geo_coordinates}")
106106
assert geo_coordinates == [

0 commit comments

Comments
 (0)