Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Apr 8, 2024
1 parent 8f20e02 commit 41b3f6c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions gen_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@
def build_field(parser):
status = EMOJI_CHECK if parser.get("status") == "implemented" else EMOJI_X
if parser.get("status") == "implemented":
parser[
"rendered"
] = f"{status} [{parser.get('name')}]({DOCS_URL}{parser.get('name')})"
parser["rendered"] = (
f"{status} [{parser.get('name')}]({DOCS_URL}{parser.get('name')})"
)
else:
parser["rendered"] = f"{status} {parser.get('name')}"

Expand Down
1 change: 1 addition & 0 deletions knex/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""knex: Python library for creating chainable data transformers."""

__version__ = "0.5.0"

__all__ = [
Expand Down
1 change: 0 additions & 1 deletion knex/parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@


class Parser:

"""Base Parser object"""

def __init__(self, input_data=None, raise_exception=False, *args, **kwargs):
Expand Down

0 comments on commit 41b3f6c

Please sign in to comment.