Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
Fix ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
monosans committed Feb 2, 2024
1 parent 1f5a599 commit f4c80e5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nitro_generator_checker/nitro_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ class NitroChecker:
"max_connections",
"nitro_generator",
"proxy_generator",
"result_handlers",
"session",
"timeout",
"result_handlers",
)

def __init__(
Expand Down
2 changes: 1 addition & 1 deletion nitro_generator_checker/proxy_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


class ProxyGenerator:
__slots__ = ("proxies", "session", "ready_event")
__slots__ = ("proxies", "ready_event", "session")

def __init__(self, session: ClientSession) -> None:
self.session = session
Expand Down
2 changes: 1 addition & 1 deletion nitro_generator_checker/result_handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ async def save(self, gift_url: str) -> None:


class FileHandler(ABCResultHandler):
__slots__ = ("file_path", "_ready_event")
__slots__ = ("_ready_event", "file_path")

def __init__(self, file_path: str) -> None:
self.file_path = file_path
Expand Down

0 comments on commit f4c80e5

Please sign in to comment.