diff options
author | John L. Villalovos <john@sodarock.com> | 2021-05-22 08:55:19 -0700 |
---|---|---|
committer | John L. Villalovos <john@sodarock.com> | 2021-05-25 11:54:51 -0700 |
commit | f3afd34260d681bbeec974b67012b90d407b7014 (patch) | |
tree | 1e6131c02a5276abf26f72618ec0b0c86fd04ea2 /gitlab/exceptions.py | |
parent | dda646e8f2ecb733e37e6cffec331b783b64714e (diff) | |
download | gitlab-f3afd34260d681bbeec974b67012b90d407b7014.tar.gz |
chore: fix import ordering using isort
Fix the import ordering using isort.
https://pycqa.github.io/isort/
Diffstat (limited to 'gitlab/exceptions.py')
-rw-r--r-- | gitlab/exceptions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/exceptions.py b/gitlab/exceptions.py index 77a7492..6f2d4c4 100644 --- a/gitlab/exceptions.py +++ b/gitlab/exceptions.py @@ -16,7 +16,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. import functools -from typing import Any, Callable, cast, Optional, Type, TypeVar, TYPE_CHECKING, Union +from typing import Any, Callable, cast, Optional, Type, TYPE_CHECKING, TypeVar, Union class GitlabError(Exception): |