Skip to content

Commit

Permalink
Merge pull request #4 from MaximumFX/dev
Browse files Browse the repository at this point in the history
Update main from dev
  • Loading branch information
MaximumFX authored Apr 10, 2024
2 parents ca4a9b5 + 1426587 commit 9219f36
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tk-readme-generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,9 +226,9 @@ def table(cols: list[str], rows: list[list[str]]) -> str:
map(
lambda item: [
f"`{item['name']}`",
item["description"],
item["default_value"],
item["fields"],
item.get("description", ""),
item.get("default_value", ""),
item.get("fields", ""),
],
value,
)
Expand All @@ -238,8 +238,8 @@ def table(cols: list[str], rows: list[list[str]]) -> str:
map(
lambda item: [
f"`{item['name']}`",
item["description"],
f'{item["default_value"]}',
item.get("description", ""),
f'{item.get("default_value", "")}',
],
value,
)
Expand Down

0 comments on commit 9219f36

Please sign in to comment.