File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments