Skip to content

Commit

Permalink
FabricCommon()__init__(): initialize _payloads_to_commit for subclasses
Browse files Browse the repository at this point in the history
  • Loading branch information
allenrobel committed Apr 21, 2024
1 parent 7d5377e commit 68f8762
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugins/module_utils/fabric/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
__metaclass__ = type
__author__ = "Allen Robel"

import copy
import inspect
import logging
import re
Expand Down Expand Up @@ -64,6 +63,8 @@ def __init__(self, params):
msg += f"state: {self.state}"
self.log.debug(msg)

self._payloads_to_commit: list = []

self._valid_fabric_types = {"VXLAN_EVPN"}

self.fabric_type_to_template_name_map = {}
Expand Down

0 comments on commit 68f8762

Please sign in to comment.