Skip to content

Commit 71a7222

Browse files
author
Steve Keay
committed
Ruff format
1 parent 91af998 commit 71a7222

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Diff for: python/neutron-understack/neutron_understack/neutron_understack_mech.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,8 @@ def update_port_postcommit(self, context):
310310
vlan_group_name = self._vlan_group_name(context)
311311
LOG.debug(
312312
"update_port_postcommit vlan_group=%s vif_type=%s",
313-
vlan_group_name, context.vif_type
313+
vlan_group_name,
314+
context.vif_type,
314315
)
315316
if vlan_group_name and context.vif_type == portbindings.VIF_TYPE_OTHER:
316317
self.invoke_undersync(vlan_group_name)
@@ -445,7 +446,7 @@ def invoke_undersync(self, vlan_group_name: str):
445446
dry_run=cfg.CONF.ml2_understack.undersync_dry_run,
446447
)
447448

448-
def _vlan_group_name(self, context: PortContext) -> str|None:
449+
def _vlan_group_name(self, context: PortContext) -> str | None:
449450
binding_profile = context.current.get("binding:profile", {})
450451
local_link_info = binding_profile.get("local_link_information", [])
451452
switch_names = [

0 commit comments

Comments
 (0)