File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ def Get(url):
121
121
try :
122
122
sp = url .split ("/" )
123
123
if len (sp ) > 5 :
124
- for token in range (0 , 7 ):
124
+ for _ in range (0 , 7 ):
125
125
sp .pop (0 )
126
126
path = "/" .join (sp )
127
127
@@ -262,23 +262,23 @@ def fetch(obj):
262
262
263
263
if include_list :
264
264
print ("Searching for matches..." )
265
- (new_obj , matches ) = include (obj , include_list )
265
+ (obj_ , matches ) = include (obj , include_list )
266
266
267
267
if matches != 0 :
268
- obj = new_obj
269
- del new_obj
268
+ obj = obj_
269
+ del obj_
270
270
print (f"{ matches } matches found to include" )
271
271
else :
272
272
sys .exit (f"no matches for { include_list } " )
273
273
274
274
if exclude_list :
275
- m = search_pattern (obj , exclude_list )
276
- if m :
277
- obj_ = exclude (obj , exclude_list , m )
275
+ matches = search_pattern (obj , exclude_list )
276
+ if matches :
277
+ obj_ = exclude (obj , exclude_list , matches )
278
278
obj = obj_
279
279
del obj_
280
280
else :
281
- print (f"{ m } matches found to ignore" )
281
+ print (f"{ matches } matches found to ignore" )
282
282
283
283
print (f"\n Clonning into { directory } ..." )
284
284
You can’t perform that action at this time.
0 commit comments