Skip to content

Commit 04521e8

Browse files
authored
Python formatting
1 parent 36583b0 commit 04521e8

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

python/copilot/types.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,20 +40,23 @@ class Selection(TypedDict):
4040
# Attachment types - discriminated union based on 'type' field
4141
class FileAttachment(TypedDict):
4242
"""File attachment."""
43+
4344
type: Literal["file"]
4445
path: str
4546
displayName: NotRequired[str]
4647

4748

4849
class DirectoryAttachment(TypedDict):
4950
"""Directory attachment."""
51+
5052
type: Literal["directory"]
5153
path: str
5254
displayName: NotRequired[str]
5355

5456

5557
class SelectionAttachment(TypedDict):
5658
"""Selection attachment with text from a file."""
59+
5760
type: Literal["selection"]
5861
filePath: str
5962
displayName: str

0 commit comments

Comments
 (0)