/loggerhead/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/loggerhead/trunk

« back to all changes in this revision

Viewing changes to loggerhead/history.py

  • Committer: Ubuntu One Auto Copilot
  • Author(s): Jelmer Vernooij
  • Date: 2023-02-01 10:38:17 UTC
  • mfrom: (543.2.1 lp:loggerhead)
  • Revision ID: otto-copilot@canonical.com-20230201103817-h68q8zmdvm7u1vv4
Sort Python import definitions

Merged from https://code.launchpad.net/~jelmer/loggerhead/isort/+merge/436635

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
import textwrap
35
35
import threading
36
36
 
37
 
from breezy import tag
38
37
import breezy.branch
39
38
import breezy.delta
40
39
import breezy.errors
41
40
import breezy.foreign
42
41
import breezy.osutils
43
42
import breezy.revision
 
43
from breezy import tag
44
44
 
45
45
try:
46
46
    from breezy.transport import NoSuchFile
47
47
except ImportError:
48
48
    from breezy.errors import NoSuchFile
49
49
 
50
 
from . import search
51
 
from . import util
 
50
from . import search, util
52
51
from .wholehistory import compute_whole_history_data
53
52
 
54
53