Skip to content

Commit ac870cc

Browse files
authored
renamed numbers.py -> number_management.py to avoid namespace clash (#247)
1 parent 5458a68 commit ac870cc

File tree

3 files changed

+1
-2
lines changed

3 files changed

+1
-2
lines changed

src/vonage/client.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from .errors import *
66
from .messages import Messages
77
from .number_insight import NumberInsight
8-
from .numbers import Numbers
8+
from .number_management import Numbers
99
from .redact import Redact
1010
from .short_codes import ShortCodes
1111
from .sms import Sms
@@ -276,7 +276,6 @@ def parse(self, host, response):
276276
elif response.status_code == 204:
277277
return None
278278
elif 200 <= response.status_code < 300:
279-
280279
# Strip off any encoding from the content-type header:
281280
content_mime = response.headers.get("content-type").split(";", 1)[0]
282281
if content_mime == "application/json":
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)