Skip to content

Commit

Permalink
Fix unused imports (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
epenet authored Nov 25, 2024
1 parent d93b5a6 commit 6500fcc
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ target-version = "py38"
[tool.ruff.lint]
ignore = [
"E501",
"F401",
"F403",
]
select = [
"B",
Expand Down
2 changes: 2 additions & 0 deletions samsungtvws/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@

from .remote import SamsungTVWS
from .shortcuts import SamsungTVShortcuts

__all__ = ["SamsungTVShortcuts", "SamsungTVWS"]
2 changes: 1 addition & 1 deletion samsungtvws/art.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import logging
import random
import socket
from typing import Any, Dict, List, Optional, Union
from typing import Any, Dict, Optional
import uuid

import websocket
Expand Down
1 change: 0 additions & 1 deletion samsungtvws/async_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import contextlib
import json
import logging
import ssl
from types import TracebackType
from typing import (
Any,
Expand Down
1 change: 0 additions & 1 deletion samsungtvws/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
SPDX-License-Identifier: LGPL-3.0
"""

import contextlib
import json
import logging
import ssl
Expand Down

0 comments on commit 6500fcc

Please sign in to comment.