Skip to content

Commit

Permalink
Merge pull request #49 from schireson/dc/http-client-stream
Browse files Browse the repository at this point in the history
chore: Add missing stream argument to strapp.
  • Loading branch information
DanCardin authored Apr 10, 2023
2 parents 4593e56 + 05f82a0 commit 7def440
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "strapp"
version = "0.3.18"
version = "0.3.19"
description = ""
authors = []
packages = [
Expand Down Expand Up @@ -79,5 +79,5 @@ plugins = [
]

[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
requires = ["poetry-core>=1.0.8"]
build-backend = "poetry.core.masonry.api"
2 changes: 2 additions & 0 deletions src/strapp/http/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ def make_request(
data=None,
files=None,
auth=None,
stream=None,
timeout=20,
json=None,
):
Expand Down Expand Up @@ -109,6 +110,7 @@ def _request(fq_url):
auth=auth,
timeout=timeout,
json=json,
stream=None,
)
try:
response.raise_for_status()
Expand Down

0 comments on commit 7def440

Please sign in to comment.