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,10 +1,11 @@
from typing import List from typing import List
from re import Pattern from re import Pattern
class CKTYPEINTERFACE: class CKTYPEINTERFACE:
NAME: str NAME: str
EXT: List[str] EXT: List[str]
SYNTAX: List[Pattern] SYNTAX: List[Pattern]
REGEX: Pattern REGEX: Pattern
NULL: str NULL: str
@ -18,7 +19,7 @@ class CKTYPEINTERFACE:
pass pass
def __repr__(self) -> str: def __repr__(self) -> str:
return '' return ""
def __eq__(self, other) -> bool: def __eq__(self, other) -> bool:
return self.__repr__() == other.__repr__() return self.__repr__() == other.__repr__()

View file

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