From 888d0f89049e511a2d4ac35f2c746eff2d8f4d61 Mon Sep 17 00:00:00 2001 From: mariam Date: Sat, 26 Feb 2022 12:28:14 +0300 Subject: [PATCH] remove imports from __future__ module2 --- asv/commands/rm.py | 3 +-- asv/commands/run.py | 3 +-- asv/commands/setup.py | 3 +-- asv/commands/show.py | 2 -- asv/commands/update.py | 2 -- 5 files changed, 3 insertions(+), 10 deletions(-) diff --git a/asv/commands/rm.py b/asv/commands/rm.py index 034d2da97..1039cc4e7 100644 --- a/asv/commands/rm.py +++ b/asv/commands/rm.py @@ -1,8 +1,7 @@ # -*- coding: utf-8 -*- # Licensed under a 3-clause BSD style license - see LICENSE.rst -from __future__ import (absolute_import, division, print_function, - unicode_literals) + import six diff --git a/asv/commands/run.py b/asv/commands/run.py index ea24addf2..53417f580 100644 --- a/asv/commands/run.py +++ b/asv/commands/run.py @@ -1,8 +1,7 @@ # -*- coding: utf-8 -*- # Licensed under a 3-clause BSD style license - see LICENSE.rst -from __future__ import (absolute_import, division, print_function, - unicode_literals) + import os import sys diff --git a/asv/commands/setup.py b/asv/commands/setup.py index 15d794bae..65487a810 100644 --- a/asv/commands/setup.py +++ b/asv/commands/setup.py @@ -1,8 +1,7 @@ # -*- coding: utf-8 -*- # Licensed under a 3-clause BSD style license - see LICENSE.rst -from __future__ import (absolute_import, division, print_function, - unicode_literals) + import logging import traceback diff --git a/asv/commands/show.py b/asv/commands/show.py index 088f37b27..cc9da8295 100644 --- a/asv/commands/show.py +++ b/asv/commands/show.py @@ -1,8 +1,6 @@ # -*- coding: utf-8 -*- # Licensed under a 3-clause BSD style license - see LICENSE.rst -from __future__ import (absolute_import, division, print_function, - unicode_literals) import os from collections import defaultdict diff --git a/asv/commands/update.py b/asv/commands/update.py index 458b7bfdc..e5378344d 100644 --- a/asv/commands/update.py +++ b/asv/commands/update.py @@ -1,8 +1,6 @@ # -*- coding: utf-8 -*- # Licensed under a 3-clause BSD style license - see LICENSE.rst -from __future__ import (absolute_import, division, print_function, - unicode_literals) import os import re