We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d099b11 commit 23fe3c9Copy full SHA for 23fe3c9
.gitignore
@@ -4,3 +4,4 @@ dist/
4
MANIFEST
5
.*.swp
6
*.egg-info
7
+.idea/
gitlab
@@ -18,21 +18,16 @@
18
19
from __future__ import print_function, division, absolute_import
20
import argparse
21
-import inspect
22
-
23
import os
24
import sys
25
import re
26
+import gitlab
+from inspect import getmro
27
try:
28
from ConfigParser import ConfigParser
29
except:
30
from configparser import ConfigParser
31
32
-from inspect import getmro, getmembers, isclass
33
34
-import gitlab
35
36
camel_re = re.compile('(.)([A-Z])')
37
LIST = 'list'
38
GET = 'get'
0 commit comments