summaryrefslogtreecommitdiff
path: root/gitlab/tests/objects/test_todos.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/tests/objects/test_todos.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/tests/objects/test_todos.py')
-rw-r--r--gitlab/tests/objects/test_todos.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/gitlab/tests/objects/test_todos.py b/gitlab/tests/objects/test_todos.py
index 07bb680..058fe33 100644
--- a/gitlab/tests/objects/test_todos.py
+++ b/gitlab/tests/objects/test_todos.py
@@ -10,7 +10,6 @@ import responses
from gitlab.v4.objects import Todo
-
with open(os.path.dirname(__file__) + "/../data/todo.json", "r") as json_file:
todo_content = json_file.read()
json_content = json.loads(todo_content)