We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 529224c commit 8c5a3b2Copy full SHA for 8c5a3b2
setup.py
@@ -23,7 +23,7 @@
23
long_description_content_type='text/markdown',
24
author='Jeroen van der Heijden',
25
author_email='[email protected]',
26
- entry_points = {
+ entry_points={
27
'console_scripts': ['things-prompt=thingsprompt.thingsprompt:main'],
28
},
29
license='GPLv3',
thingsprompt/thingsprompt.py
@@ -529,7 +529,7 @@ def main():
529
loop = asyncio.get_event_loop()
530
531
if args.ssl:
532
- context = ssl.SSLContext( ssl.PROTOCOL_TLS_CLIENT )
+ context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT)
533
context.check_hostname = False
534
context.verify_mode = ssl.CERT_NONE
535
context.minimum_version = ssl.TLSVersion.TLSv1_2
0 commit comments