Skip to content

Commit 8c5a3b2

Browse files
committed
pep
1 parent 529224c commit 8c5a3b2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
long_description_content_type='text/markdown',
2424
author='Jeroen van der Heijden',
2525
author_email='[email protected]',
26-
entry_points = {
26+
entry_points={
2727
'console_scripts': ['things-prompt=thingsprompt.thingsprompt:main'],
2828
},
2929
license='GPLv3',

thingsprompt/thingsprompt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ def main():
529529
loop = asyncio.get_event_loop()
530530

531531
if args.ssl:
532-
context = ssl.SSLContext( ssl.PROTOCOL_TLS_CLIENT )
532+
context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT)
533533
context.check_hostname = False
534534
context.verify_mode = ssl.CERT_NONE
535535
context.minimum_version = ssl.TLSVersion.TLSv1_2

0 commit comments

Comments
 (0)