Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
lmolkova committed Nov 22, 2023
1 parent 042bc04 commit 882376a
Showing 1 changed file with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,17 @@ def __init__(
f"{spec_root_url}/specification/common/attribute-requirement-level.md"
)
req_level = f"[Requirement Level]({attribute_req_level_url})"
type = f"[Type]({spec_root_url}/specification/common/README.md#attribute)"
attribute_type = (
f"[Type]({spec_root_url}/specification/common/README.md#attribute)"
)

self.table_headers = f"| Attribute | {type} | Description | Examples | {req_level} |\n|---|---|---|---|---|\n"
self.table_headers = (
f"| Attribute | {attribute_type} | Description | Examples | {req_level} |"
"\n|---|---|---|---|---|\n"
)
self.table_headers_omitting_req_level = (
f"| Attribute | {type} | Description | Examples |\n|---|---|---|---|\n"
f"| Attribute | {attribute_type} | Description | Examples |"
"\n|---|---|---|---|\n"
)

def to_markdown_attr(
Expand Down

0 comments on commit 882376a

Please sign in to comment.