Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes all Pylint issues #1

Merged
merged 16 commits into from
Jun 4, 2024
Merged

Fixes all Pylint issues #1

merged 16 commits into from
Jun 4, 2024

Commits on Jun 4, 2024

  1. Uses single quotes to not confused the f-string

    Fixes Pylint Error `E001`
    cr2007 committed Jun 4, 2024
    Configuration menu
    Copy the full SHA
    2bf0af7 View commit details
    Browse the repository at this point in the history
  2. Fixes Pylint error C0301

    Line too long
    cr2007 committed Jun 4, 2024
    Configuration menu
    Copy the full SHA
    e3bdc86 View commit details
    Browse the repository at this point in the history
  3. Fixes Pylint error C0325 and R0205

    R0205: useless-object-inheritance
    C0325: Unnecessary params after 'not' keyword
    cr2007 committed Jun 4, 2024
    Configuration menu
    Copy the full SHA
    ae9bd26 View commit details
    Browse the repository at this point in the history
  4. Fixes Pylint error codes W0622, W1514

    W0622: Redefining built-in 'type'
    W1514: Unspecified encoding in `open`
    cr2007 committed Jun 4, 2024
    Configuration menu
    Copy the full SHA
    2722090 View commit details
    Browse the repository at this point in the history
  5. Fixes Pylint error codes C0103, C0411

    C0103: Invalid-name (doesn't conform to snake_case naming style
    C0411: Wrong Import Order
    cr2007 committed Jun 4, 2024
    Configuration menu
    Copy the full SHA
    becd7c9 View commit details
    Browse the repository at this point in the history
  6. Fixes Pylint errors C0301, C0411, E0401

    Line too long
    and Wrong Import Order
    and Updates the dependency list to install
    cr2007 committed Jun 4, 2024
    Configuration menu
    Copy the full SHA
    b9acf5c View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    0a6276c View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    af432d8 View commit details
    Browse the repository at this point in the history
  9. Adds pylint dependency

    cr2007 committed Jun 4, 2024
    Configuration menu
    Copy the full SHA
    eb9c43e View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    ad603a7 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    7a8137d View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    e784d6f View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    5d8d716 View commit details
    Browse the repository at this point in the history
  14. Adds descriptive file variable names

    Fixes Pylint error C0103
    cr2007 committed Jun 4, 2024
    Configuration menu
    Copy the full SHA
    4dc573c View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    6859e8a View commit details
    Browse the repository at this point in the history
  16. Update Python version in workflows and add typing features

    * Updated `pylint.yml` workflow file to use only Python versions 3.8+
    * Added support for TypedDict and Literal types in `__init__.py` (Python 3.9+)
    * Fall back to using `typing_extensions` for older Python versions
    
    This commit ensures that our code is compatible with the latest Python versions while still supporting older versions.
    cr2007 committed Jun 4, 2024
    Configuration menu
    Copy the full SHA
    06cf591 View commit details
    Browse the repository at this point in the history