mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-17 11:38:32 +02:00
change arg names to show which aren't used
This commit is contained in:
parent
37f2c44302
commit
ceefc0cfce
1 changed files with 3 additions and 3 deletions
|
@ -57,14 +57,14 @@ def preconfig_version(_):
|
||||||
print(output)
|
print(output)
|
||||||
|
|
||||||
|
|
||||||
def postconfig_list(args, config, **kwargs):
|
def postconfig_list(args, config, **_):
|
||||||
from jrnl.output import list_journals
|
from jrnl.output import list_journals
|
||||||
|
|
||||||
print(list_journals(config, args.export))
|
print(list_journals(config, args.export))
|
||||||
|
|
||||||
|
|
||||||
@cmd_requires_valid_journal_name
|
@cmd_requires_valid_journal_name
|
||||||
def postconfig_import(args, config, **kwargs):
|
def postconfig_import(args, config, **_):
|
||||||
from jrnl.Journal import open_journal
|
from jrnl.Journal import open_journal
|
||||||
from jrnl.plugins import get_importer
|
from jrnl.plugins import get_importer
|
||||||
|
|
||||||
|
@ -76,7 +76,7 @@ def postconfig_import(args, config, **kwargs):
|
||||||
|
|
||||||
|
|
||||||
@cmd_requires_valid_journal_name
|
@cmd_requires_valid_journal_name
|
||||||
def postconfig_encrypt(args, config, original_config, **kwargs):
|
def postconfig_encrypt(args, config, original_config, **_):
|
||||||
"""
|
"""
|
||||||
Encrypt a journal in place, or optionally to a new file
|
Encrypt a journal in place, or optionally to a new file
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Add table
Reference in a new issue