diff --git a/pyprland/plugins/scratchpads/helpers.py b/pyprland/plugins/scratchpads/helpers.py index c7e2ca9..446ba42 100644 --- a/pyprland/plugins/scratchpads/helpers.py +++ b/pyprland/plugins/scratchpads/helpers.py @@ -66,7 +66,7 @@ def _comp_function(value1: str, _value2: str) -> bool: return lambda value1, value2: value1 == value2 -class DynMonitorConfig(dict): +class DynMonitorConfig: """A `dict`-like object allowing per-monitor overrides.""" def __init__( @@ -75,10 +75,6 @@ def __init__( self.ref = ref self.mon_override = monitor_override - def update(self, other: dict[str, float | bool | list | str]) -> None: - """Update the configuration with the given dictionary.""" - self.ref.update(other) - def __setitem__(self, name: str, value: float | bool | str | list) -> None: self.ref[name] = value diff --git a/pyprland/version.py b/pyprland/version.py index f3f7d77..5c5df0d 100644 --- a/pyprland/version.py +++ b/pyprland/version.py @@ -1,3 +1,3 @@ """Package version.""" -VERSION = "2.4.0-58" +VERSION = "2.4.0-60"