mirror of
https://github.com/agessaman/meshcore-bot.git
synced 2026-05-10 17:55:18 +00:00
Update default value for condense_paths in MultitestCommand
- Changed the fallback value for condense_paths from False to True in the MultitestCommand class, ensuring that paths are condensed by default. This adjustment improves the command's usability and aligns with expected behavior.
This commit is contained in:
+1
-1
@@ -1006,7 +1006,7 @@ enabled = false
|
||||
# Example: "Found {path_count} unique path(s) for @[{sender}]:\n{paths}"
|
||||
response_format = @[{sender}] found {path_count} unique path(s):\n{paths}
|
||||
# When true, {paths} uses shared-prefix lines ending with ┐ U+2510 when branching, then ├ U+251C / └ U+2514 (nested rows use U+3000 before ├/└)
|
||||
condense_paths = false
|
||||
condense_paths = true
|
||||
|
||||
[Greeter_Command]
|
||||
# Enable greeter to greet users on first channel message (true/false)
|
||||
|
||||
@@ -285,7 +285,7 @@ class MultitestCommand(BaseCommand):
|
||||
self.response_format = None # Use default format
|
||||
|
||||
self.condense_paths = self.get_config_value(
|
||||
'Multitest_Command', 'condense_paths', fallback=False, value_type='bool'
|
||||
'Multitest_Command', 'condense_paths', fallback=True, value_type='bool'
|
||||
)
|
||||
|
||||
def get_help_text(self) -> str:
|
||||
|
||||
Reference in New Issue
Block a user