summaryrefslogtreecommitdiffstats
path: root/anta/cli/debug/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'anta/cli/debug/__init__.py')
-rw-r--r--anta/cli/debug/__init__.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/anta/cli/debug/__init__.py b/anta/cli/debug/__init__.py
index 6c4dbfb..18d577f 100644
--- a/anta/cli/debug/__init__.py
+++ b/anta/cli/debug/__init__.py
@@ -1,9 +1,8 @@
# Copyright (c) 2023-2024 Arista Networks, Inc.
# Use of this source code is governed by the Apache License 2.0
# that can be found in the LICENSE file.
-"""
-Click commands to execute EOS commands on remote devices
-"""
+"""Click commands to execute EOS commands on remote devices."""
+
import click
from anta.cli.debug import commands
@@ -11,7 +10,7 @@ from anta.cli.debug import commands
@click.group
def debug() -> None:
- """Commands to execute EOS commands on remote devices"""
+ """Commands to execute EOS commands on remote devices."""
debug.add_command(commands.run_cmd)