Skip to content

Commit

Permalink
Remove __future__ imports from plugins directory (#1053)
Browse files Browse the repository at this point in the history
  • Loading branch information
mariamadronah authored Feb 26, 2022
1 parent f10d381 commit 70333aa
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 10 deletions.
2 changes: 0 additions & 2 deletions asv/plugins/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-
# Licensed under a 3-clause BSD style license - see LICENSE.rst

from __future__ import (absolute_import, division, print_function,
unicode_literals)
3 changes: 1 addition & 2 deletions asv/plugins/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
Supports git repositories for the benchmarked project.
"""

from __future__ import (absolute_import, division, print_function,
unicode_literals)


import os
import re
Expand Down
3 changes: 1 addition & 2 deletions asv/plugins/github.py
Original file line number Diff line number Diff line change
@@ -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

Expand Down
3 changes: 1 addition & 2 deletions asv/plugins/kcachegrind.py
Original file line number Diff line number Diff line change
@@ -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)



from .. import profiling
Expand Down
3 changes: 1 addition & 2 deletions asv/plugins/mercurial.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
Supports mercurial repositories for the benchmarked project.
"""

from __future__ import (absolute_import, division, print_function,
unicode_literals)


import os
import sys
Expand Down

0 comments on commit 70333aa

Please sign in to comment.