Skip to content

Commit

Permalink
removing unwanted logs
Browse files Browse the repository at this point in the history
  • Loading branch information
AsabuHere committed Sep 17, 2024
1 parent 3e246e4 commit 8395487
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions twilio/base/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,6 @@ def create(
"""
Create a resource instance.
"""
print('******')
response = self.request(
method,
uri,
Expand All @@ -481,7 +480,6 @@ def create(
timeout=timeout,
allow_redirects=allow_redirects,
)
print('******')
return self._parse_create(method, uri, response)

async def create_async(
Expand All @@ -499,7 +497,6 @@ async def create_async(
"""
Asynchronously create a resource instance.
"""
print('******')
response = await self.request_async(
method,
uri,
Expand All @@ -511,5 +508,4 @@ async def create_async(
allow_redirects=allow_redirects,
is_oauth=is_oauth,
)
print('******')
return self._parse_create(method, uri, response)

0 comments on commit 8395487

Please sign in to comment.