Skip to content

Commit

Permalink
fix: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
rwxd committed Feb 22, 2024
1 parent dcba656 commit ea9e181
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion ipams/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,15 @@ def __init__(self, name: str, *args, **kwargs):
self.add_column('Description', justify='left', style='green')
self.add_column('Link', justify='left', style='green')

def add_row(self, vrf: str, tenant: str, address: str, hostname: str, description: str, link: str):
def add_row(
self,
vrf: str,
tenant: str,
address: str,
hostname: str,
description: str,
link: str,
):
super().add_row(address, hostname, tenant, vrf, description, link)


Expand Down

0 comments on commit ea9e181

Please # to comment.