Skip to content

Commit

Permalink
Black fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bhati-pradeep committed Jan 8, 2025
1 parent cfdf50f commit 393ba86
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugins/module_utils/v3/foundation/discover_nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ def discover(self, include_configured=False):
result_nodes = []
for n in nodes:
configured = n.get("configured")
if include_configured or (isinstance(configured, bool) and not configured):
if include_configured or (
isinstance(configured, bool) and not configured
):

# handle datatype corner cases for cluster_id & current_cvm_vlan_tag
if n.get("cluster_id"):
Expand Down

0 comments on commit 393ba86

Please sign in to comment.