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 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__()
|
||||||
|
|
14
setup.py
14
setup.py
|
@ -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"],
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue