Skip to content

Commit

Permalink
Correct type hinting.
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewHambley committed Mar 27, 2024
1 parent 30e9d1c commit 723af89
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/fab/steps/grab/svn.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
from fab.tools import run_command


def split_repo_url(url: str, revision: str = None) -> Tuple[str, Optional[str]]:
def split_repo_url(url: str,
revision: Optional[str] = None) -> Tuple[str, Optional[str]]:
"""
Separates revision from a repository URL.
Expand Down

0 comments on commit 723af89

Please sign in to comment.