From e6e62870350b23f1f8716ac175cb7e7cd138315f Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Sat, 11 May 2024 15:04:33 +0000 Subject: [PATCH] style: format code with Autopep8, Black, ClangFormat, dotnet-format, Go fmt, Gofumpt, Google Java Format, isort, Ktlint, PHP CS Fixer, Prettier, RuboCop, Ruff Formatter, Rustfmt, Scalafmt, StandardJS, StandardRB, swift-format and Yapf This commit fixes the style issues introduced in b591b1c according to the output from Autopep8, Black, ClangFormat, dotnet-format, Go fmt, Gofumpt, Google Java Format, isort, Ktlint, PHP CS Fixer, Prettier, RuboCop, Ruff Formatter, Rustfmt, Scalafmt, StandardJS, StandardRB, swift-format and Yapf. Details: None --- identity_verifier/setup.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/identity_verifier/setup.py b/identity_verifier/setup.py index 5eeca1fa0..480b6268b 100644 --- a/identity_verifier/setup.py +++ b/identity_verifier/setup.py @@ -1,12 +1,12 @@ from setuptools import setup setup( - name='identity-verifier', - version='0.1', - packages=['identity_verifier'], + name="identity-verifier", + version="0.1", + packages=["identity_verifier"], install_requires=[ - 'numpy', - 'opencv-python', + "numpy", + "opencv-python", # Add other dependencies here - ] + ], )