From b6ad1896e89feff9c5328b7baa708187d790d1e1 Mon Sep 17 00:00:00 2001 From: Scott K Logan Date: Wed, 21 Sep 2022 14:02:42 -0700 Subject: [PATCH] Fix a flake8 violation in tests (#893) --- test/test_rosdep_source.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_rosdep_source.py b/test/test_rosdep_source.py index 52ed39c4c..679db9ec2 100644 --- a/test/test_rosdep_source.py +++ b/test/test_rosdep_source.py @@ -188,7 +188,7 @@ def test_SourceInstaller_get_install_command(): exit 0 """ commands = installer.get_install_command([resolved]) - assert not(commands) + assert not commands def test_SourceInstaller_resolve():