Skip to content

Commit 2f69687

Browse files
fix linter
1 parent ba9717d commit 2f69687

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/uipath/_services/documents_service.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import time
22
from contextlib import nullcontext
33
from pathlib import Path
4-
from typing import Any, Callable, List, Optional, Set, Tuple
4+
from typing import Any, Callable, Dict, List, Optional, Set, Tuple
55
from uuid import UUID
66

77
from httpx._types import FileContent
@@ -32,7 +32,7 @@ class DocumentsService(FolderContext, BaseService):
3232
def __init__(self, config: Config, execution_context: ExecutionContext) -> None:
3333
super().__init__(config=config, execution_context=execution_context)
3434

35-
def _get_common_headers(self) -> dict:
35+
def _get_common_headers(self) -> Dict:
3636
return {
3737
"X-UiPath-Internal-Agents-Integration": "true",
3838
"X-UiPath-Internal-ConsumptionSourceType": "CodedAgents",

0 commit comments

Comments
 (0)