File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 33[ ![ fern shield] ( https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen )] ( https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2FPipedreamHQ%2Fpipedream-sdk-python )
44[ ![ pypi] ( https://img.shields.io/pypi/v/pipedream )] ( https://pypi.python.org/pypi/pipedream )
55
6- The Pipedream Python library provides convenient access to the Pipedream API from Python.
6+ The Pipedream Python library provides convenient access to the Pipedream APIs from Python.
77
88## Installation
99
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name = "pipedream"
33
44[tool .poetry ]
55name = " pipedream"
6- version = " 1.0.5 "
6+ version = " 1.0.6 "
77description = " "
88readme = " README.md"
99authors = []
Original file line number Diff line number Diff line change 44import typing
55
66import httpx
7- from .types .project_environment import ProjectEnvironment
7+ from ._ . types .project_environment import ProjectEnvironment
88from .accounts .client import AccountsClient , AsyncAccountsClient
99from .actions .client import ActionsClient , AsyncActionsClient
1010from .app_categories .client import AppCategoriesClient , AsyncAppCategoriesClient
Original file line number Diff line number Diff line change 33import typing
44
55import httpx
6- from ..types .project_environment import ProjectEnvironment
6+ from .._ . types .project_environment import ProjectEnvironment
77from .http_client import AsyncHttpClient , HttpClient
88
99
@@ -27,10 +27,10 @@ def __init__(
2727
2828 def get_headers (self ) -> typing .Dict [str , str ]:
2929 headers : typing .Dict [str , str ] = {
30- "User-Agent" : "pipedream/1.0.5 " ,
30+ "User-Agent" : "pipedream/1.0.6 " ,
3131 "X-Fern-Language" : "Python" ,
3232 "X-Fern-SDK-Name" : "pipedream" ,
33- "X-Fern-SDK-Version" : "1.0.5 " ,
33+ "X-Fern-SDK-Version" : "1.0.6 " ,
3434 ** (self .get_custom_headers () or {}),
3535 }
3636 if self ._project_environment is not None :
You can’t perform that action at this time.
0 commit comments