Skip to content

Commit

Permalink
print args in l3 router
Browse files Browse the repository at this point in the history
  • Loading branch information
Milan Fencik committed Dec 11, 2024
1 parent 97cec43 commit b9a771e
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,14 @@ def print_post_commit_data(method: str, data: dict) -> None:

@resource_extend.has_resource_extenders
class UnderStackL3ServicePlugin(L3RouterPlugin):
"""Understack L3 plugin.
L3 plugin to deal with Understack infrastructure.
"""
def __init__(self, *args, **kwargs) -> None:
"""Understack L3 plugin.
L3 plugin to deal with Understack infrastructure.
"""
pprint(args)
pprint(kwargs)
super().__init__()

@classmethod
def get_plugin_type(self):
Expand Down

0 comments on commit b9a771e

Please sign in to comment.