mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[CI] Format code
This commit is contained in:
parent
9eda00698c
commit
a631261cff
3 changed files with 20 additions and 9 deletions
|
@ -1779,7 +1779,7 @@ ynh_app_config_run $1
|
|||
"app_id": app_id,
|
||||
"app": self.app,
|
||||
"app_instance_nb": str(app_instance_nb),
|
||||
"final_path": settings.get("final_path", "")
|
||||
"final_path": settings.get("final_path", ""),
|
||||
}
|
||||
)
|
||||
|
||||
|
|
|
@ -75,7 +75,7 @@ def log_list(limit=None, with_details=False, with_suboperations=False):
|
|||
# If we displaying only parent, we are still gonna load up to limit * 5 logs
|
||||
# because many of them are suboperations which are not gonna be kept
|
||||
# Yet we still want to obtain ~limit number of logs
|
||||
logs = logs[:limit * 5]
|
||||
logs = logs[: limit * 5]
|
||||
|
||||
for log in logs:
|
||||
|
||||
|
@ -186,12 +186,17 @@ def log_show(
|
|||
r"DEBUG - \+ exit (1|0)$",
|
||||
]
|
||||
filters = [re.compile(f) for f in filters]
|
||||
return [line for line in lines if not any(f.search(line.strip()) for f in filters)]
|
||||
return [
|
||||
line
|
||||
for line in lines
|
||||
if not any(f.search(line.strip()) for f in filters)
|
||||
]
|
||||
|
||||
else:
|
||||
|
||||
def _filter(lines):
|
||||
return lines
|
||||
|
||||
|
||||
# Normalize log/metadata paths and filenames
|
||||
abs_path = path
|
||||
log_path = None
|
||||
|
|
|
@ -478,7 +478,7 @@ class Question(object):
|
|||
self.value = Moulinette.prompt(
|
||||
message=text,
|
||||
is_password=self.hide_user_input_in_prompt,
|
||||
confirm=False, # We doesn't want to confirm this kind of password like in webadmin
|
||||
confirm=False, # We doesn't want to confirm this kind of password like in webadmin
|
||||
prefill=prefill,
|
||||
is_multiline=(self.type == "text"),
|
||||
)
|
||||
|
@ -705,11 +705,17 @@ class PasswordQuestion(Question):
|
|||
|
||||
def _format_text_for_user_input_in_cli(self):
|
||||
need_column = self.current_value or self.optional
|
||||
text_for_user_input_in_cli = super()._format_text_for_user_input_in_cli(need_column)
|
||||
text_for_user_input_in_cli = super()._format_text_for_user_input_in_cli(
|
||||
need_column
|
||||
)
|
||||
if self.current_value:
|
||||
text_for_user_input_in_cli += "\n - " + m18n.n("app_argument_password_help_keep")
|
||||
text_for_user_input_in_cli += "\n - " + m18n.n(
|
||||
"app_argument_password_help_keep"
|
||||
)
|
||||
if self.optional:
|
||||
text_for_user_input_in_cli += "\n - " + m18n.n("app_argument_password_help_optional")
|
||||
text_for_user_input_in_cli += "\n - " + m18n.n(
|
||||
"app_argument_password_help_optional"
|
||||
)
|
||||
|
||||
return text_for_user_input_in_cli
|
||||
|
||||
|
@ -832,7 +838,7 @@ class UserQuestion(Question):
|
|||
raise YunohostValidationError(
|
||||
"app_argument_invalid",
|
||||
name=self.name,
|
||||
error="You should create a YunoHost user first."
|
||||
error="You should create a YunoHost user first.",
|
||||
)
|
||||
|
||||
if self.default is None:
|
||||
|
|
Loading…
Add table
Reference in a new issue