Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
repos:
- repo: https://github.com/asottile/reorder_python_imports
rev: v3.1.0
- repo: https://github.com/asottile/reorder-python-imports
rev: v3.16.0
hooks:
- id: reorder-python-imports
language_version: python3
args:
- --application-directories=.:src
- repo: https://github.com/psf/black
rev: 22.3.0
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.12.0
hooks:
- id: black
args: [--safe, --quiet, --line-length, "100"]
language_version: python3
require_serial: true
- repo: https://github.com/PyCQA/flake8
rev: 4.0.1
rev: 7.3.0
hooks:
- id: flake8
language_version: python3
args:
- --max-line-length=100
- --ignore=W503,E203
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.2.0
rev: v6.0.0
hooks:
- id: trailing-whitespace
language_version: python3
Expand All @@ -31,7 +31,7 @@ repos:
- id: debug-statements
language_version: python3
- repo: https://github.com/asottile/pyupgrade
rev: v2.32.1
rev: v3.21.2
hooks:
- id: pyupgrade
language_version: python3
Expand Down
1 change: 1 addition & 0 deletions src/widgetastic_patternfly/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""This package contains classes that represent widgets in Patternfly for Widgetastic"""

import functools
import re
import time
Expand Down
1 change: 1 addition & 0 deletions testing/test_all_components.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
instantiated. The widgets appear to get instantiated upon accessing them in the instantiated view.
After all of this, the behavior of the widget objects can be tested.
"""

import inspect

import pytest
Expand Down
Loading