Skip to content

Commit

Permalink
fixup! Use 'None' as argument default
Browse files Browse the repository at this point in the history
  • Loading branch information
cottsay committed May 22, 2024
1 parent d7b09f9 commit e0d08aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions colcon_core/task/python/test/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,16 +137,16 @@ async def step(self):
raise NotImplementedError()


def get_python_testing_step_extensions(
*, group_name='colcon_core.python_testing',
):
def get_python_testing_step_extensions(*, group_name=None):
"""
Get the available Python testing step extensions.
The extensions are ordered by their priority and entry point name.
:rtype: OrderedDict
"""
if group_name is None:
group_name = 'colcon_core.python_testing'
extensions = instantiate_extensions(group_name, unique_instance=False)
for name in list(extensions.keys()):
extension = extensions[name]
Expand Down

0 comments on commit e0d08aa

Please sign in to comment.