Skip to content

Commit

Permalink
resolved pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
SantiiRepair committed Jul 14, 2024
1 parent 4c18f6d commit 2658341
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,11 @@ termcolor = "^2.3.0"

[tool.black]
line-length = 120
target-version = ['py311']
target-version = ['py310', 'py311', 'py312']
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
Expand All @@ -62,6 +61,7 @@ exclude = '''
)
'''


[build-system]
requires = ["poetry-core"]
python_requires = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion quotexpy/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def __init__(self, email: str, password: str, headless: bool):
self.cookies = None
self.profile = None
self.websocket_thread = None
self.wss_url = f"wss://ws2.qxbroker.com/socket.io/?EIO=3&transport=websocket"
self.wss_url = "wss://ws2.qxbroker.com/socket.io/?EIO=3&transport=websocket"
self.websocket_client = None
self.set_ssid = None
self.user_agent = None
Expand Down
3 changes: 2 additions & 1 deletion quotexpy/http/qxbroker.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import re, json
import re
import json
import time, requests
from pathlib import Path
from bs4 import BeautifulSoup
Expand Down

0 comments on commit 2658341

Please sign in to comment.