Skip to content

Commit 603f614

Browse files
committed
chore: BaseProject.schemes: Typings
1 parent 48c95be commit 603f614

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libvcs/projects/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Base class for VCS Project plugins."""
22
import logging
33
import pathlib
4-
from typing import NamedTuple
4+
from typing import NamedTuple, Tuple
55
from urllib import parse as urlparse
66

77
from libvcs._internal.run import CmdLoggingAdapter, run
@@ -41,7 +41,7 @@ class BaseProject:
4141
bin_name = ""
4242
"""VCS app name, e.g. 'git'"""
4343

44-
schemes = ()
44+
schemes: Tuple[str, ...] = ()
4545
"""List of supported schemes to register in ``urlparse.uses_netloc``"""
4646

4747
def __init__(self, *, url: str, dir: StrPath, progress_callback=None, **kwargs):

0 commit comments

Comments
 (0)