Skip to content

Commit

Permalink
Add a space in between not and parentheses. (#88)
Browse files Browse the repository at this point in the history
This will fix a flake8 warning on newer versions.

Signed-off-by: Chris Lalancette <[email protected]>
  • Loading branch information
clalancette authored Jan 26, 2024
1 parent 8215efd commit 3539893
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tracetools_trace/tracetools_trace/tools/lttng_impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ def setup(

ust_enabled = ros_events is not None and len(ros_events) > 0
kernel_enabled = kernel_events is not None and len(kernel_events) > 0
if not(ust_enabled or kernel_enabled):
if not (ust_enabled or kernel_enabled):
raise RuntimeError('no events enabled')

# Create session
Expand Down

0 comments on commit 3539893

Please sign in to comment.