Skip to content

Commit

Permalink
Move Ruff ignore commment to different line.
Browse files Browse the repository at this point in the history
  • Loading branch information
kingfetty committed Jan 15, 2025
1 parent 4d8e14e commit 7a02954
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nautobot_ssot/integrations/aci/signals.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ def aci_create_tag(apps, **kwargs):
for key in apics:
if ("SITE" in key or "STAGE" in key) and not tag.objects.filter(name=apics[key]).exists():
_ensure_tag(
apps=apps, name=apics[key], color="".join([random.choice("ABCDEF0123456789") for i in range(6)])
) # noqa: S311
apps=apps, name=apics[key], color="".join([random.choice("ABCDEF0123456789") for i in range(6)]) # noqa: S311
)


def aci_create_manufacturer(apps, **kwargs):
Expand Down

0 comments on commit 7a02954

Please sign in to comment.