Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,6 @@ ignore = [
"E741", # Ambiguous variable name
"EM101", # Exception string literal
"EM102", # Exception f-string
"F401", # Unused import
"F541", # f-string without placeholders
"F811", # Redefinition of unused name
"F821", # Undefined name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,14 @@

__all__: list[str] = []

import io
import json
import os
import re
import sys
import threading
import time
from collections.abc import Callable
from typing import Any, Optional, Protocol, Type, TypeAlias
from typing import Any, Protocol, TypeAlias

# package infos
from .__meta__ import ( # noqa
Expand Down
Loading