Run formatter.

This commit is contained in:
Kevin Baensch 2024-11-23 23:33:32 +01:00
parent 06b282e7cd
commit a2adb1fd6a
Signed by: derped
GPG key ID: C0F1D326C7626543
2 changed files with 10 additions and 9 deletions

View file

@ -1,6 +1,7 @@
from typing import List
from re import Pattern
class CKTYPEINTERFACE:
NAME: str
EXT: List[str]
@ -18,7 +19,7 @@ class CKTYPEINTERFACE:
pass
def __repr__(self) -> str:
return ''
return ""
def __eq__(self, other) -> bool:
return self.__repr__() == other.__repr__()

View file

@ -2,11 +2,11 @@
from setuptools import setup
setup(
name='fck',
version='0.1',
description='A simple checksum utility that just works.',
url='https://git.ophanim.de/derped/fck',
python_requires='>3.8',
packages=['fck', 'fck/cktype'],
scripts=['scripts/fck'],
name="fck",
version="0.1",
description="A simple checksum utility that just works.",
url="https://git.ophanim.de/derped/fck",
python_requires=">3.8",
packages=["fck", "fck/cktype"],
scripts=["scripts/fck"],
)