Skip to content

Commit

Permalink
fix flake8
Browse files Browse the repository at this point in the history
Signed-off-by: YuxuanLiuTier4Desktop <[email protected]>
  • Loading branch information
Owen-Liuyuxuan committed Oct 22, 2024
1 parent 0bba6f9 commit 9571e05
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 283 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .launch_tree import LaunchTree
from .launch_tree import LaunchTreeNode
from .main import launch_file_analyse_main
from .string_utils import find_cmake_projects
from .string_utils import find_package
from .launch_tree import LaunchTree # noqa
from .launch_tree import LaunchTreeNode # noqa
from .main import launch_file_analyse_main # noqa
from .string_utils import find_cmake_projects # noqa
from .string_utils import find_package # noqa

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def __init__(self):

# List of important topics to check; only add topics that are known to be important
# we will also listen to diagnostic messages to find out topics that create problems
self.important_topics = set()
self.important_topics: set = {"/control/command/control_cmd"}

self.ignore_topics = [
"/rosout",
Expand Down

0 comments on commit 9571e05

Please sign in to comment.