/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/check.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-11-16 11:19:09 UTC
  • mfrom: (7143.11.6 unused-imports)
  • Revision ID: breezy.the.bot@gmail.com-20181116111909-ekbys9z1ujp66gh2
Remove some unused imports.

Merged from https://code.launchpad.net/~jelmer/brz/unused-imports/+merge/358595

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
 
39
39
from . import (
40
40
    errors,
41
 
    ui,
42
41
    )
43
 
from .branch import Branch
44
42
from .controldir import ControlDir
45
 
from .revision import NULL_REVISION
46
 
from .sixish import (
47
 
    viewitems,
48
 
    )
49
43
from .trace import note
50
 
from .workingtree import WorkingTree
51
44
from .i18n import gettext
52
45
 
53
46
class Check(object):