Skip to content
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api/entities/struct.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from typing import Optional
from typing import List

class Struct():
"""
Expand Down
2 changes: 2 additions & 0 deletions tests/source_files/py/src.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from typing import Task
Copy link

Copilot AI Nov 28, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The import statement for 'Task' from the 'typing' module is unnecessary as 'Task' is not used in the code.

Copilot uses AI. Check for mistakes.

def log(msg: str) -> None:
print(f'msg: {msg}')

Expand Down
Loading