Skip to content

Commit

Permalink
Update comment
Browse files Browse the repository at this point in the history
1. module_utils.fabric/fabric_types.py

Edit comment to mention that the private set is exposed via property external_fabric_types.
  • Loading branch information
allenrobel committed Nov 16, 2024
1 parent 2f7ea18 commit 95c7f62
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugins/module_utils/fabric/fabric_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,12 @@ def _init_fabric_types(self) -> None:

self._valid_fabric_types = sorted(self._fabric_type_to_template_name_map.keys())

# Adding self._external_fabric_types to be used in conjunction with
# self._external_fabric_types is used in conjunction with
# self._fabric_type_to_ext_fabric_type_map. This is used in (at least)
# FabricCreateCommon() to determine if EXT_FABRIC_TYPE key needs to be
# added to a payload.
#
# Exposed via property external_fabric_types
self._external_fabric_types = set()
self._external_fabric_types.add("ISN")

Expand Down

0 comments on commit 95c7f62

Please sign in to comment.