summaryrefslogtreecommitdiff
path: root/gitlab/mixins.py
diff options
context:
space:
mode:
authorJohn L. Villalovos <john@sodarock.com>2021-05-22 08:55:19 -0700
committerJohn L. Villalovos <john@sodarock.com>2021-05-25 11:54:51 -0700
commitf3afd34260d681bbeec974b67012b90d407b7014 (patch)
tree1e6131c02a5276abf26f72618ec0b0c86fd04ea2 /gitlab/mixins.py
parentdda646e8f2ecb733e37e6cffec331b783b64714e (diff)
downloadgitlab-f3afd34260d681bbeec974b67012b90d407b7014.tar.gz
chore: fix import ordering using isort
Fix the import ordering using isort. https://pycqa.github.io/isort/
Diffstat (limited to 'gitlab/mixins.py')
-rw-r--r--gitlab/mixins.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/gitlab/mixins.py b/gitlab/mixins.py
index a4ed9f5..852bc63 100644
--- a/gitlab/mixins.py
+++ b/gitlab/mixins.py
@@ -15,6 +15,7 @@
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
+import warnings
from types import ModuleType
from typing import (
Any,
@@ -31,12 +32,10 @@ from typing import (
import requests
import gitlab
-from gitlab import base
-from gitlab import cli
+from gitlab import base, cli
from gitlab import exceptions as exc
from gitlab import types as g_types
from gitlab import utils
-import warnings
__all__ = [
"GetMixin",