File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -248,7 +248,6 @@ def url(self, value):
248248 else :
249249 original_value = value
250250 self .protocol = value [:value .index (':' )]
251- print (f'Found Protocol: { self .protocol } ' )
252251
253252 protocol = self .protocol + '://'
254253 value = value .replace (protocol , '' )
@@ -265,8 +264,6 @@ def url(self, value):
265264 except ValueError :
266265 self .domain = value
267266
268- print (f'Found Domain: { self .domain } ' )
269-
270267 domain = self .domain + '/'
271268 if domain in value :
272269 value = value .replace (domain , '' )
@@ -302,9 +299,6 @@ def url(self, value):
302299 else :
303300 self .path = None
304301
305- print (f'Found Port: { self .port } ' )
306- print (f'Found Path: { self .path } ' )
307-
308302 self ._url = original_value
309303
310304 @property
You can’t perform that action at this time.
0 commit comments