Skip to content

Commit

Permalink
[MegaLinter] Apply linters fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bdovaz committed May 14, 2023
1 parent c254c09 commit b4ad315
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .automation/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -2737,8 +2737,10 @@ def generate_documentation_all_linters():
)
supported_platforms = []
# supported platforms
if (hasattr(linter, "supported_platforms") and
"platform" in linter.supported_platforms):
if (
hasattr(linter, "supported_platforms")
and "platform" in linter.supported_platforms
):
supported_platforms += linter.supported_platforms["platform"]
# line
table_line = [
Expand Down

0 comments on commit b4ad315

Please sign in to comment.