Skip to content

tests(config-variations): Git schemes in repo URLs #426

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Update __init__.py to import enable_ssh_style_url_detection function
  • Loading branch information
tony committed Jun 22, 2025
commit d55a5869c811fdcc47e90e56455f35e67e3967a3
6 changes: 2 additions & 4 deletions src/vcspull/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@
import logging
from logging import NullHandler

from . import (
cli,
url, # Import custom URL handling
)
from . import cli
from .url import enable_ssh_style_url_detection # Import custom URL handling

logging.getLogger(__name__).addHandler(NullHandler())