diff --git a/dockerfile/anaconda-ci/requirements.txt b/dockerfile/anaconda-ci/requirements.txt index 327254f8df1..238331f4566 100644 --- a/dockerfile/anaconda-ci/requirements.txt +++ b/dockerfile/anaconda-ci/requirements.txt @@ -19,7 +19,7 @@ pylint == 3.3.1 astroid == 3.3.4 # ruff for fast linting -ruff == 0.6.7 +ruff == 0.6.8 # vulture for dead code analysis vulture == 2.12 diff --git a/pyanaconda/modules/boss/kickstart_manager/parser.py b/pyanaconda/modules/boss/kickstart_manager/parser.py index 795e6617c51..ca996114a33 100644 --- a/pyanaconda/modules/boss/kickstart_manager/parser.py +++ b/pyanaconda/modules/boss/kickstart_manager/parser.py @@ -61,7 +61,7 @@ def __init__(self, *args, **kwargs): """ super().__init__(*args, **kwargs) self.sectionOpen = kwargs.get("sectionOpen") - self._store = kwargs.get("store", None) + self._store = kwargs.get("store") self.header_lineno = 0 self.args = [] self.lines = []