/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/plugins/bash_completion/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2019-05-29 03:22:34 UTC
  • mfrom: (7303 work)
  • mto: This revision was merged to the branch mainline in revision 7306.
  • Revision ID: jelmer@jelmer.uk-20190529032234-mt3fuws8gq03tapi
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
bash completion function for bzr. See its documentation for details.
23
23
"""
24
24
 
25
 
from ... import commands, version_info
 
25
from ... import commands, version_info  # noqa: F401
26
26
 
27
27
 
28
28
bzr_plugin_name = 'bash_completion'
29
 
bzr_commands = [ 'bash-completion' ]
 
29
bzr_commands = ['bash-completion']
30
30
 
31
31
commands.plugin_cmds.register_lazy('cmd_bash_completion', [],
32
32
                                   'breezy.plugins.bash_completion.bashcomp')
37
37
        'tests',
38
38
        ]
39
39
    basic_tests.addTest(loader.loadTestsFromModuleNames(
40
 
            ["%s.%s" % (__name__, tmn) for tmn in testmod_names]))
 
40
        ["%s.%s" % (__name__, tmn) for tmn in testmod_names]))
41
41
    return basic_tests