File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name = "pipedream"
3
3
4
4
[tool .poetry ]
5
5
name = " pipedream"
6
- version = " 0.3.2 "
6
+ version = " 0.3.3 "
7
7
description = " "
8
8
readme = " README.md"
9
9
authors = []
Original file line number Diff line number Diff line change 4
4
import typing
5
5
6
6
import httpx
7
- from .types .project_environment import ProjectEnvironment
7
+ from ._ . types .project_environment import ProjectEnvironment
8
8
from .accounts .client import AccountsClient , AsyncAccountsClient
9
9
from .actions .client import ActionsClient , AsyncActionsClient
10
10
from .app_categories .client import AppCategoriesClient , AsyncAppCategoriesClient
Original file line number Diff line number Diff line change 3
3
import typing
4
4
5
5
import httpx
6
- from ..types .project_environment import ProjectEnvironment
6
+ from .._ . types .project_environment import ProjectEnvironment
7
7
from .http_client import AsyncHttpClient , HttpClient
8
8
9
9
@@ -27,10 +27,10 @@ def __init__(
27
27
28
28
def get_headers (self ) -> typing .Dict [str , str ]:
29
29
headers : typing .Dict [str , str ] = {
30
- "User-Agent" : "pipedream/0.3.2 " ,
30
+ "User-Agent" : "pipedream/0.3.3 " ,
31
31
"X-Fern-Language" : "Python" ,
32
32
"X-Fern-SDK-Name" : "pipedream" ,
33
- "X-Fern-SDK-Version" : "0.3.2 " ,
33
+ "X-Fern-SDK-Version" : "0.3.3 " ,
34
34
** (self .get_custom_headers () or {}),
35
35
}
36
36
if self ._project_environment is not None :
You can’t perform that action at this time.
0 commit comments