Skip to content

Commit ad84e4b

Browse files
committed
[df] Ruff changes in test file
1 parent d68471d commit ad84e4b

1 file changed

Lines changed: 18 additions & 18 deletions

File tree

roottest/python/distrdf/backends/test_all.py

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1+
import shlex
12
import sys
23

34
import pytest
45

5-
from check_backend import *
6-
from check_cloned_actions import *
7-
from check_distribute_cppcode import *
8-
from check_definepersample import *
9-
from check_fromspec import *
10-
from check_explicit_api import *
11-
from check_friend_trees_alignment import *
12-
from check_friend_trees import *
13-
from check_histo_write import *
14-
from check_distribute_headers_sharedlibs_files import *
15-
from check_inv_mass import *
16-
from check_live_visualize import *
17-
from check_missing_values import *
18-
from check_reducer_merge import *
19-
from check_rungraphs import *
20-
from check_variations import *
21-
22-
import shlex
6+
# Avoid errors from linters like "unable to detect undefined names"
7+
from check_backend import * # noqa: F403
8+
from check_cloned_actions import * # noqa: F403
9+
from check_definepersample import * # noqa: F403
10+
from check_distribute_cppcode import * # noqa: F403
11+
from check_distribute_headers_sharedlibs_files import * # noqa: F403
12+
from check_explicit_api import * # noqa: F403
13+
from check_friend_trees import * # noqa: F403
14+
from check_friend_trees_alignment import * # noqa: F403
15+
from check_fromspec import * # noqa: F403
16+
from check_histo_write import * # noqa: F403
17+
from check_inv_mass import * # noqa: F403
18+
from check_live_visualize import * # noqa: F403
19+
from check_missing_values import * # noqa: F403
20+
from check_reducer_merge import * # noqa: F403
21+
from check_rungraphs import * # noqa: F403
22+
from check_variations import * # noqa: F403
2323

2424
if __name__ == "__main__":
2525
# The call to sys.exit is needed otherwise CTest would just ignore the

0 commit comments

Comments
 (0)