Skip to content

Commit 8395487

Browse files
committed
removing unwanted logs
1 parent 3e246e4 commit 8395487

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

twilio/base/version.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,6 @@ def create(
470470
"""
471471
Create a resource instance.
472472
"""
473-
print('******')
474473
response = self.request(
475474
method,
476475
uri,
@@ -481,7 +480,6 @@ def create(
481480
timeout=timeout,
482481
allow_redirects=allow_redirects,
483482
)
484-
print('******')
485483
return self._parse_create(method, uri, response)
486484

487485
async def create_async(
@@ -499,7 +497,6 @@ async def create_async(
499497
"""
500498
Asynchronously create a resource instance.
501499
"""
502-
print('******')
503500
response = await self.request_async(
504501
method,
505502
uri,
@@ -511,5 +508,4 @@ async def create_async(
511508
allow_redirects=allow_redirects,
512509
is_oauth=is_oauth,
513510
)
514-
print('******')
515511
return self._parse_create(method, uri, response)

0 commit comments

Comments
 (0)