Skip to content

Commit

Permalink
[Dependencies] Update Pipfile.lock (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
rokatyy authored May 8, 2024
1 parent ca8251b commit 15dd4ce
Show file tree
Hide file tree
Showing 3 changed files with 106 additions and 71 deletions.
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ nuclio-sdk = { editable = true, path = "." }
flake8 = "*"
twine = "*"
bleach = "==3.3.0"
black = "==22.3.0"
black = "==24.3.0"
importlib_metadata = "<3"
build = ">0.2"

Expand Down
167 changes: 100 additions & 67 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions hack/ci_assets/function/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,11 @@ def handler(context: nuclio_sdk.Context, event: nuclio_sdk.Event):
"type": event.type,
"typeVersion": event.type_version,
"version": event.version,
"body": event.body
if isinstance(event.body, dict)
else event.body.decode("utf8"),
"body": (
event.body
if isinstance(event.body, dict)
else event.body.decode("utf8")
),
},
default=json_default,
),
Expand Down

0 comments on commit 15dd4ce

Please sign in to comment.