eric6/Plugins/VcsPlugins/vcsGit/Config.py

Fri, 09 Apr 2021 18:38:01 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Fri, 09 Apr 2021 18:38:01 +0200
changeset 8207
d359172d11be
parent 7923
91e843545d9a
permissions
-rw-r--r--

Applied some more code simplifications suggested by the new Simplify checker.

# -*- coding: utf-8 -*-

# Copyright (c) 2014 - 2021 Detlev Offenbach <detlev@die-offenbachs.de>
#

"""
Module defining configuration variables for the Git package.
"""

# Available protocols for the repository URL
ConfigGitSchemes = [
    'file',
    'ftp',
    'ftps',
    'git',
    'http',
    'https',
    'rsync',
    'ssh',
    'ssh+scp',
]

eric ide

mercurial