From f3afd34260d681bbeec974b67012b90d407b7014 Mon Sep 17 00:00:00 2001 From: "John L. Villalovos" Date: Sat, 22 May 2021 08:55:19 -0700 Subject: chore: fix import ordering using isort Fix the import ordering using isort. https://pycqa.github.io/isort/ --- gitlab/v4/objects/files.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gitlab/v4/objects/files.py') diff --git a/gitlab/v4/objects/files.py b/gitlab/v4/objects/files.py index 5d0401f..ff45478 100644 --- a/gitlab/v4/objects/files.py +++ b/gitlab/v4/objects/files.py @@ -1,6 +1,8 @@ import base64 -from gitlab import cli, utils + +from gitlab import cli from gitlab import exceptions as exc +from gitlab import utils from gitlab.base import RequiredOptional, RESTManager, RESTObject from gitlab.mixins import ( CreateMixin, @@ -11,7 +13,6 @@ from gitlab.mixins import ( UpdateMixin, ) - __all__ = [ "ProjectFile", "ProjectFileManager", -- cgit v1.2.1