We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f042d2f commit 9744475Copy full SHA for 9744475
gitlab.py
@@ -678,7 +678,7 @@ def pretty_print(self, depth=0):
678
id = self.__dict__[self.idAttr]
679
print("%s%s: %s" % (" " * depth * 2, self.idAttr, id))
680
for k in sorted(self.__dict__.keys()):
681
- if k == self.idAttr:
+ if k == self.idAttr or k == 'id':
682
continue
683
if k[0] == '_':
684
0 commit comments