From 34ddfb83bc27bb1ee772346eb4c7302bdb461c23 Mon Sep 17 00:00:00 2001 From: Alex Stephen Date: Tue, 11 Nov 2025 14:41:33 -0800 Subject: [PATCH] Renable linter rule B024 --- pyiceberg/expressions/__init__.py | 2 +- pyiceberg/table/__init__.py | 2 +- ruff.toml | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/pyiceberg/expressions/__init__.py b/pyiceberg/expressions/__init__.py index 330d22b1a4..45486c3a37 100644 --- a/pyiceberg/expressions/__init__.py +++ b/pyiceberg/expressions/__init__.py @@ -131,7 +131,7 @@ class Term(Generic[L], ABC): """A simple expression that evaluates to a value.""" -class Bound(ABC): +class Bound: """Represents a bound value expression.""" diff --git a/pyiceberg/table/__init__.py b/pyiceberg/table/__init__.py index cc7c1c6af0..942e99db8e 100644 --- a/pyiceberg/table/__init__.py +++ b/pyiceberg/table/__init__.py @@ -1783,7 +1783,7 @@ def with_case_sensitive(self: S, case_sensitive: bool = True) -> S: def count(self) -> int: ... -class ScanTask(ABC): +class ScanTask: pass diff --git a/ruff.toml b/ruff.toml index ab0ef4f90c..df6d402e67 100644 --- a/ruff.toml +++ b/ruff.toml @@ -59,7 +59,6 @@ select = [ ] ignore = [ "E501", - "B024", "B028", "UP037", "UP035",