Skip to content

Commit

Permalink
Add type annotation for get_cmds()
Browse files Browse the repository at this point in the history
  • Loading branch information
taldcroft committed Jan 17, 2024
1 parent 252bb9e commit 7f60325
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion kadi/commands/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@
import os

from kadi.commands import conf
from kadi.commands.core import CommandTable
from kadi.commands.observations import * # noqa


def get_cmds(start=None, stop=None, inclusive_stop=False, scenario=None, **kwargs):
def get_cmds(
start=None, stop=None, inclusive_stop=False, scenario=None, **kwargs
) -> CommandTable:
"""
Get commands beteween ``start`` and ``stop``.
Expand Down

0 comments on commit 7f60325

Please sign in to comment.