Skip to content

Commit b06f115

Browse files
Add 'launch' to sets of launch file extensions (#518)
Signed-off-by: Christophe Bedard <[email protected]>
1 parent 83700f5 commit b06f115

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

launch_xml/launch_xml/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ def load(
3939
@classmethod
4040
def get_file_extensions(cls) -> Set[Text]:
4141
"""Return the set of file extensions known to this parser."""
42-
return {'launch.xml', 'xml'}
42+
return {'launch.xml', 'xml', 'launch'}

launch_yaml/launch_yaml/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ def load(
5757
@classmethod
5858
def get_file_extensions(cls) -> Set[Text]:
5959
"""Return the set of file extensions known to this parser."""
60-
return {'launch.yaml', 'launch.yml', 'yaml', 'yml'}
60+
return {'launch.yaml', 'launch.yml', 'yaml', 'yml', 'launch'}

0 commit comments

Comments
 (0)