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