We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff8fa35 commit 7b776bdCopy full SHA for 7b776bd
1 file changed
thicket/tests/test_filter_profile.py
@@ -10,8 +10,8 @@ def test_filter_profile(rajaperf_cali_1trial):
10
tk = Thicket.from_caliperreader(rajaperf_cali_1trial, disable_tqdm=True)
11
12
# Split profile list into two halves
13
- rm_profs = tk.profile[len(tk.profile)//2:]
14
- keep_profs = tk.profile[:len(tk.profile)//2]
+ rm_profs = tk.profile[len(tk.profile) // 2 :]
+ keep_profs = tk.profile[: len(tk.profile) // 2]
15
16
tk_filt = tk.filter_profile(keep_profs)
17
0 commit comments