Skip to content

Commit f9dea89

Browse files
committed
f fix flake8
1 parent 30267f9 commit f9dea89

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

python/py_vapid/main.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ def main():
3333
print("No private_key.pem file found.")
3434
answer = None
3535
while answer not in ['y', 'n']:
36-
answer = raw_input("Do you want me to create one for you? (Y/n)")
36+
answer = raw_input("Do you want me to create one for you? "
37+
"(Y/n)")
3738
if not answer:
3839
answer = 'y'
3940
answer = answer.lower()[0]
@@ -49,7 +50,8 @@ def main():
4950
"the developer dashboard.")
5051
answer = None
5152
while answer not in ['y', 'n']:
52-
answer = raw_input("Do you want me to create one for you? (Y/n)")
53+
answer = raw_input("Do you want me to create one for you? "
54+
"(Y/n)")
5355
if not answer:
5456
answer = 'y'
5557
answer = answer.lower()[0]

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from setuptools import setup, find_packages
55

6-
__version__ = "1.1.0"
6+
__version__ = "1.1.1"
77

88

99
def read_from(file):

0 commit comments

Comments
 (0)