Skip to content

Commit

Permalink
Linter: Fix detected issues
Browse files Browse the repository at this point in the history
  • Loading branch information
elkoniu committed Oct 4, 2024
1 parent b16dd15 commit abd2aa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyanaconda/modules/boss/kickstart_manager/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = []
Expand Down

0 comments on commit abd2aa3

Please sign in to comment.