8000 Make sure to put a newline at the end of __init__.py · PNPtutorials/twilio-python@a13fd02 · GitHub
[go: up one dir, main page]

Skip to content

Commit a13fd02

Browse files
author
matt
committed
Make sure to put a newline at the end of __init__.py
1 parent 569ea20 commit a13fd02

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

deploy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def main(version):
2727
info = version.split('.')
2828

2929
init_src = ("__version_info__ = ({version_info})\n"
30-
"__version__ = '.'.join(__version_info__)")
30+
"__version__ = '.'.join(__version_info__)\n")
3131
init_src = init_src.format(version_info=', '.join(["'{}'".format(i) for i in info]))
3232

3333
print('Updating twilio/__init__.py ... ', end="")

twilio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
__version_info__ = ('6', '0', '0rc10')
2-
__version__ = '.'.join(__version_info__)
2+
__version__ = '.'.join(__version_info__)

0 commit comments

Comments
 (0)
0