src/managednetworkfabric/azext_managednetworkfabric/operations/run_command_options.py (4 lines of code) (raw):
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
#
# --------------------------------------------------------------------------------------------
# pylint: disable=too-few-public-methods,no-member,too-few-public-methods,useless-parent-delegation
from abc import ABC
class RunCommandOptions(ABC):
"""Helper class for all Device commands that allow to download execution result to the disk"""
def pre_operations(self):
return super().pre_operations()