eric6/Plugins/VcsPlugins/vcsGit/Config.py

Wed, 21 Apr 2021 19:40:50 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Wed, 21 Apr 2021 19:40:50 +0200
changeset 8259
2bbec88047dd
parent 7923
91e843545d9a
permissions
-rw-r--r--

Applied some more code simplifications suggested by the new Simplify checker (Y108: use ternary operator).

# -*- 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