chrislit/abydos

View on GitHub
abydos/distance/_chebyshev.py

Summary

Maintainability
A
0 mins
Test Coverage

Parameters differ from overridden 'dist_abs' method
Open

    def dist_abs(self, src: str, tar: str, *args: Any, **kwargs: Any) -> float:
Severity: Minor
Found in abydos/distance/_chebyshev.py by pylint

Used when a method has a different number of arguments than in the implemented interface or in an overridden method.

Unused argument 'args'
Open

    def dist_abs(self, src: str, tar: str, *args: Any, **kwargs: Any) -> float:
Severity: Minor
Found in abydos/distance/_chebyshev.py by pylint

Used when a function or method argument is not used.

Unused argument 'kwargs'
Open

    def dist_abs(self, src: str, tar: str, *args: Any, **kwargs: Any) -> float:
Severity: Minor
Found in abydos/distance/_chebyshev.py by pylint

Used when a function or method argument is not used.

Parameters differ from overridden 'dist' method
Open

    def dist(self, *args: Any, **kwargs: Any) -> NoReturn:
Severity: Minor
Found in abydos/distance/_chebyshev.py by pylint

Used when a method has a different number of arguments than in the implemented interface or in an overridden method.

Parameters differ from overridden 'sim' method
Open

    def sim(self, *args: Any, **kwargs: Any) -> NoReturn:
Severity: Minor
Found in abydos/distance/_chebyshev.py by pylint

Used when a method has a different number of arguments than in the implemented interface or in an overridden method.

Wrong hanging indentation before block (add 4 spaces).
Open

        intersection_type: str = 'crisp',
Severity: Info
Found in abydos/distance/_chebyshev.py by pylint

TODO intersection_type: str = 'crisp', ^ |

Wrong hanging indentation before block (add 4 spaces).
Open

        alphabet: Optional[
Severity: Info
Found in abydos/distance/_chebyshev.py by pylint

TODO alphabet: Optional[ ^ |

Wrong hanging indentation before block (add 4 spaces).
Open

        **kwargs: Any
Severity: Info
Found in abydos/distance/_chebyshev.py by pylint

TODO **kwargs: Any ^ |

Wrong hanging indentation before block (add 4 spaces).
Open

        self,
Severity: Info
Found in abydos/distance/_chebyshev.py by pylint

TODO self, ^ |

Wrong hanging indentation before block (add 4 spaces).
Open

        tokenizer: Optional[_Tokenizer] = None,
Severity: Info
Found in abydos/distance/_chebyshev.py by pylint

TODO tokenizer: Optional[_Tokenizer] = None, ^ |

There are no issues that match your filters.

Category
Status