diff options
author | 2020-07-15 17:09:44 -0700 | |
---|---|---|
committer | 2020-07-15 17:09:55 -0700 | |
commit | 788c0e8bb07b40d45bee243f563267444af791ac (patch) | |
tree | 02018b9bb9b144e4ed2ef77a3d0e13a2232adb90 /lib/_emerge/depgraph.py | |
parent | Remove unnecessary time.monotonic() compat (diff) | |
download | portage-788c0e8bb07b40d45bee243f563267444af791ac.tar.gz portage-788c0e8bb07b40d45bee243f563267444af791ac.tar.bz2 portage-788c0e8bb07b40d45bee243f563267444af791ac.zip |
Remove from __future__ import unicode_literals
Signed-off-by: Zac Medico <zmedico@gentoo.org>
Diffstat (limited to 'lib/_emerge/depgraph.py')
-rw-r--r-- | lib/_emerge/depgraph.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/_emerge/depgraph.py b/lib/_emerge/depgraph.py index ec90e59df..795cf69d6 100644 --- a/lib/_emerge/depgraph.py +++ b/lib/_emerge/depgraph.py @@ -1,7 +1,7 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -from __future__ import division, print_function, unicode_literals +from __future__ import division, print_function import collections import errno |