/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/controllers/annotate_ui.py

  • Committer: Jelmer Vernooij
  • Date: 2023-01-31 19:08:09 UTC
  • mto: This revision was merged to the branch mainline in revision 545.
  • Revision ID: jelmer@jelmer.uk-20230131190809-n0xfd2lh69e3xocd
Sort Python import definitions with isort

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
# Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335  USA
17
17
#
18
18
 
 
19
import itertools
19
20
from datetime import datetime
20
 
import itertools
21
21
 
 
22
from .. import util
22
23
from ..controllers.view_ui import ViewUI
23
 
from .. import util
 
24
 
24
25
 
25
26
class AnnotateUI(ViewUI):
26
27