Run formatter.
This commit is contained in:
parent
06b282e7cd
commit
a2adb1fd6a
2 changed files with 10 additions and 9 deletions
|
@ -1,10 +1,11 @@
|
|||
from typing import List
|
||||
from re import Pattern
|
||||
|
||||
|
||||
class CKTYPEINTERFACE:
|
||||
NAME: str
|
||||
EXT: List[str]
|
||||
SYNTAX: List[Pattern]
|
||||
SYNTAX: List[Pattern]
|
||||
REGEX: Pattern
|
||||
NULL: str
|
||||
|
||||
|
@ -18,7 +19,7 @@ class CKTYPEINTERFACE:
|
|||
pass
|
||||
|
||||
def __repr__(self) -> str:
|
||||
return ''
|
||||
return ""
|
||||
|
||||
def __eq__(self, other) -> bool:
|
||||
return self.__repr__() == other.__repr__()
|
||||
|
|
14
setup.py
14
setup.py
|
@ -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"],
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue