summaryrefslogtreecommitdiff
path: root/gitlab/client.py
diff options
context:
space:
mode:
authorJohn L. Villalovos <john@sodarock.com>2022-06-03 16:12:54 -0700
committerJohn L. Villalovos <john@sodarock.com>2022-06-04 09:18:22 -0700
commitd6870a981259ee44c64210a756b63dc19a6f3957 (patch)
tree4595fdb24afc3d769cb8895e0679081533969087 /gitlab/client.py
parent1a2781e477471626e2b00129bef5169be9c7cc06 (diff)
downloadgitlab-d6870a981259ee44c64210a756b63dc19a6f3957.tar.gz
chore: enable pylint check: "attribute-defined-outside-init"
Enable the pylint check: "attribute-defined-outside-init" and fix errors detected.
Diffstat (limited to 'gitlab/client.py')
-rw-r--r--gitlab/client.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/gitlab/client.py b/gitlab/client.py
index a9bd48f..ffb92e6 100644
--- a/gitlab/client.py
+++ b/gitlab/client.py
@@ -123,6 +123,7 @@ class Gitlab:
objects = gitlab.v4.objects
self._objects = objects
+ self.user: Optional[objects.CurrentUser] = None
self.broadcastmessages = objects.BroadcastMessageManager(self)
"""See :class:`~gitlab.v4.objects.BroadcastMessageManager`"""