Skip to content

Commit a6027d9

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 cf40780 commit a6027d9

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ repos:
2121
- --no-sort-keys
2222
exclude: ^vendor/
2323
- repo: https://github.com/psf/black
24-
rev: 25.12.0
24+
rev: 26.1.0
2525
hooks:
2626
- id: black

examples/urgent_evidence/test_urgent_evidence.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def test_actions_to_photo(action_iris_all: typing.Set[str]) -> None:
9999
select_query_text = in_fh.read().strip()
100100
_logger.debug("select_query_text = %r." % select_query_text)
101101
for record in graph.query(select_query_text):
102-
(n_deriving_action, l_description) = record
102+
n_deriving_action, l_description = record
103103
action_iris_computed.add(n_deriving_action.toPython())
104104

105105
action_iris_true_positive = action_iris_computed & action_iris_ground_truth_positive
@@ -159,7 +159,7 @@ def test_photo_selection() -> None:
159159
select_query_text = in_fh.read().strip()
160160
_logger.debug("select_query_text = %r." % select_query_text)
161161
for record in graph.query(select_query_text):
162-
(l_file_name, l_review_status) = record
162+
l_file_name, l_review_status = record
163163
file_name_status_computed.add(
164164
(l_file_name.toPython(), l_review_status.toPython())
165165
)

0 commit comments

Comments
 (0)