diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 15266b1..32c2aa8 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -2,14 +2,14 @@ default_language_version: python: python3 repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v5.0.0 + rev: v6.0.0 hooks: - id: check-toml - id: check-yaml - id: end-of-file-fixer - id: trailing-whitespace - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.7.0 + rev: v0.16.8 hooks: - id: ruff args: [--fix] diff --git a/git_aggregator/exception.py b/git_aggregator/exception.py index 0f25940..bdb2796 100644 --- a/git_aggregator/exception.py +++ b/git_aggregator/exception.py @@ -5,13 +5,11 @@ class GitAggregatorException(Exception): """Base Exception """ - pass class ConfigException(GitAggregatorException): """Malformed config definition """ - pass class DirtyException(GitAggregatorException):