Skip to content

Commit e7a8182

Browse files
committed
Removed extranaeous print() statements.
1 parent 38705de commit e7a8182

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

highcharts_core/headless_export.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)