diff options
author | Nejc Habjan <nejc.habjan@siemens.com> | 2022-01-22 04:04:38 +0100 |
---|---|---|
committer | John Villalovos <john@sodarock.com> | 2022-01-23 07:14:49 -0800 |
commit | ae2a015db1017d3bf9b5f1c5893727da9b0c937f (patch) | |
tree | d7fac15dfee5cf5b4168738fcfbe799765d42681 /gitlab/utils.py | |
parent | 39e74355816700f101cd9bedd10a2873c2cdce1a (diff) | |
download | gitlab-ae2a015db1017d3bf9b5f1c5893727da9b0c937f.tar.gz |
chore: remove old-style classes
Diffstat (limited to 'gitlab/utils.py')
-rw-r--r-- | gitlab/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/utils.py b/gitlab/utils.py index 8b3054c..f549042 100644 --- a/gitlab/utils.py +++ b/gitlab/utils.py @@ -21,7 +21,7 @@ from typing import Any, Callable, Dict, Optional, Union import requests -class _StdoutStream(object): +class _StdoutStream: def __call__(self, chunk: Any) -> None: print(chunk) |