Skip to content

Commit

Permalink
Fix pylint issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
smk4664 committed Sep 6, 2024
1 parent 1aee536 commit 790687d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class InfobloxVLAN(Vlan):
"""Infoblox implementation of the VLAN Model."""


class InfobloxIPAddress(IPAddress):
class InfobloxIPAddress(IPAddress): # pylint: disable=too-many-instance-attributes
"""Infoblox implementation of the VLAN Model."""

@classmethod
Expand Down
2 changes: 1 addition & 1 deletion nautobot_ssot/integrations/itential/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ class Meta:
"""Meta class definition."""

model = models.AutomationGatewayModel
fields = ["name", "description", "location", "location_descendants", "gateway", "enabled"]
fields = "__all__"

0 comments on commit 790687d

Please sign in to comment.