Fix indentations

... which are now complained by flake8.
This commit is contained in:
Takashi Kajinami 2025-06-09 21:23:10 +09:00
parent de4acf0752
commit 4aa05c7499
8 changed files with 120 additions and 119 deletions

View File

@ -5,7 +5,8 @@ name = 'websockify'
long_description = open("README.md").read() + "\n" + \ long_description = open("README.md").read() + "\n" + \
open("CHANGES.txt").read() + "\n" open("CHANGES.txt").read() + "\n"
setup(name=name, setup(
name=name,
version=version, version=version,
description="Websockify.", description="Websockify.",
long_description=long_description, long_description=long_description,
@ -28,11 +29,11 @@ setup(name=name,
url="https://github.com/novnc/websockify", url="https://github.com/novnc/websockify",
author="Joel Martin", author="Joel Martin",
author_email="github@martintribe.org", author_email="github@martintribe.org",
packages=['websockify'], packages=['websockify'],
include_package_data=True, include_package_data=True,
install_requires=[ install_requires=[
'numpy', 'requests', 'numpy',
'requests',
'jwcrypto', 'jwcrypto',
'redis', 'redis',
], ],