Skip to content

Commit 23fe3c9

Browse files
committed
*clean import package
+add folder .idea to gitignore
1 parent d099b11 commit 23fe3c9

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ dist/
44
MANIFEST
55
.*.swp
66
*.egg-info
7+
.idea/

gitlab

+2-7
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,16 @@
1818

1919
from __future__ import print_function, division, absolute_import
2020
import argparse
21-
import inspect
22-
2321
import os
2422
import sys
2523
import re
26-
24+
import gitlab
25+
from inspect import getmro
2726
try:
2827
from ConfigParser import ConfigParser
2928
except:
3029
from configparser import ConfigParser
3130

32-
from inspect import getmro, getmembers, isclass
33-
34-
import gitlab
35-
3631
camel_re = re.compile('(.)([A-Z])')
3732
LIST = 'list'
3833
GET = 'get'

0 commit comments

Comments
 (0)