mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-06-29 22:16:13 +02:00
fix some linting issues for failing PR (#1745)
This commit is contained in:
parent
959e18ad91
commit
4cb5d1e436
3 changed files with 3 additions and 3 deletions
|
@ -90,4 +90,4 @@ class MsgStyle(Enum):
|
|||
|
||||
@property
|
||||
def box_title(self) -> MsgText:
|
||||
return self.value.get("box_title", None)
|
||||
return self.value.get("box_title")
|
||||
|
|
|
@ -21,7 +21,7 @@ def apply_overrides(args: "Namespace", base_config: dict) -> dict:
|
|||
:return: Configuration to be used during runtime with the overrides applied
|
||||
:rtype: dict
|
||||
"""
|
||||
overrides = vars(args).get("config_override", None)
|
||||
overrides = vars(args).get("config_override")
|
||||
if not overrides:
|
||||
return base_config
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue