Skip to content

Commit 13ae8b9

Browse files
committed
fix style
1 parent b7198c5 commit 13ae8b9

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/portal/azext_portal/custom.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ def _parse_properties(self):
3636
raise CLIError("Failed to parse 'metadata' from property.")
3737
args.metadata = properties['metadata']
3838

39+
3940
def _parse_dashboard_json(self):
4041
args = self.ctx.args
4142
try:
@@ -57,7 +58,7 @@ def _parse_dashboard_json(self):
5758

5859

5960
class Create(_Create):
60-
61+
6162
@classmethod
6263
def _build_arguments_schema(cls, *args, **kwargs):
6364
args_schema = super()._build_arguments_schema(*args, **kwargs)
@@ -73,7 +74,7 @@ def pre_operations(self):
7374

7475

7576
class Update(_Update):
76-
77+
7778
@classmethod
7879
def _build_arguments_schema(cls, *args, **kwargs):
7980
args_schema = super()._build_arguments_schema(*args, **kwargs)
@@ -109,6 +110,6 @@ def _build_arguments_schema(cls, *args, **kwargs):
109110
args_schema.location._registered = False
110111

111112
return args_schema
112-
113+
113114
def pre_operations(self):
114-
_parse_dashboard_json(self)
115+
_parse_dashboard_json(self)

0 commit comments

Comments
 (0)