From 600df043e76924d43a4f9f88f4e3241740f34c77 Mon Sep 17 00:00:00 2001 From: Yobmod Date: Mon, 19 Jul 2021 20:26:53 +0100 Subject: Rmv old py2.7 __future__ imports --- git/index/__init__.py | 2 -- git/objects/__init__.py | 2 -- git/refs/__init__.py | 1 - git/repo/__init__.py | 1 - 4 files changed, 6 deletions(-) (limited to 'git') diff --git a/git/index/__init__.py b/git/index/__init__.py index 2516f01f..96b721f0 100644 --- a/git/index/__init__.py +++ b/git/index/__init__.py @@ -1,6 +1,4 @@ """Initialize the index package""" # flake8: noqa -from __future__ import absolute_import - from .base import * from .typ import * diff --git a/git/objects/__init__.py b/git/objects/__init__.py index 897eb98f..1d0bb7a5 100644 --- a/git/objects/__init__.py +++ b/git/objects/__init__.py @@ -2,8 +2,6 @@ Import all submodules main classes into the package space """ # flake8: noqa -from __future__ import absolute_import - import inspect from .base import * diff --git a/git/refs/__init__.py b/git/refs/__init__.py index ded8b1f7..1486dffe 100644 --- a/git/refs/__init__.py +++ b/git/refs/__init__.py @@ -1,5 +1,4 @@ # flake8: noqa -from __future__ import absolute_import # import all modules in order, fix the names they require from .symbolic import * from .reference import * diff --git a/git/repo/__init__.py b/git/repo/__init__.py index 5619aa69..712df60d 100644 --- a/git/repo/__init__.py +++ b/git/repo/__init__.py @@ -1,4 +1,3 @@ """Initialize the Repo package""" # flake8: noqa -from __future__ import absolute_import from .base import * -- cgit v1.2.1