/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/git/workingtree.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:
30
30
    Index,
31
31
    SHA1Writer,
32
32
    build_index_from_tree,
33
 
    changes_from_tree,
34
33
    index_entry_from_path,
35
34
    index_entry_from_stat,
36
 
    iter_fresh_entries,
37
35
    FLAG_STAGEMASK,
38
36
    read_submodule_head,
39
37
    validate_path,
43
41
    tree_lookup_path,
44
42
    )
45
43
from dulwich.objects import (
46
 
    Blob,
47
 
    Tree,
48
 
    S_IFGITLINK,
49
44
    S_ISGITLINK,
50
 
    ZERO_SHA,
51
 
    )
52
 
from dulwich.repo import (
53
 
    NotGitRepository,
54
 
    Repo as GitRepo,
55
45
    )
56
46
import os
57
47
import posixpath
58
 
import re
59
48
import stat
60
49
import sys
61
50