Metadata

ID: python-best-practices/ambiguous-class-name

Language: Python

Severity: Notice

Category: Best Practices

Description

In some fonts, some characters are indistinguishable from the numerals one and zero, such as, O looks like a zero. Use characters that are not ambiguous.

Non-Compliant Code Examples

class I:  # use i instead
    pass

Compliant Code Examples

class MyClass:
    pass