commit: 3d357218fe565857ea7a19bbdfd83aa16bc9f1d8 Author: Aaron Bauman <bman <AT> gentoo <DOT> org> AuthorDate: Mon Aug 3 20:20:18 2020 +0000 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org> CommitDate: Mon Aug 3 21:15:35 2020 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=3d357218
lib/portage/emaint/modules/sync/sync.py: drop unused-import Signed-off-by: Aaron Bauman <bman <AT> gentoo.org> Signed-off-by: Zac Medico <zmedico <AT> gentoo.org> lib/portage/emaint/modules/sync/sync.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/portage/emaint/modules/sync/sync.py b/lib/portage/emaint/modules/sync/sync.py index a8da68065..ce9c0da39 100644 --- a/lib/portage/emaint/modules/sync/sync.py +++ b/lib/portage/emaint/modules/sync/sync.py @@ -6,16 +6,12 @@ import os import portage portage._internal_caller = True portage._sync_mode = True -from portage.localization import _ from portage.output import bold, red, create_color_func from portage._global_updates import _global_updates from portage.sync.controller import SyncManager -from portage.util import writemsg_level from portage.util.digraph import digraph from portage.util.futures import asyncio from portage.util._async.AsyncScheduler import AsyncScheduler -from portage.util._eventloop.global_event_loop import global_event_loop -from portage.util._eventloop.EventLoop import EventLoop import _emerge from _emerge.emergelog import emergelog
