Skip to content

Commit 8140754

Browse files
committed
Bump version to v1.0.0.
1 parent a8c427b commit 8140754

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

pyfunceble_webworker/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,5 @@
5353

5454
import secrets
5555

56-
__version__ = "1.0.0a6"
56+
__version__ = "1.0.0"
5757
__session_id__ = secrets.token_urlsafe(16)

pyfunceble_webworker/core/defaults/assets.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,9 @@
7979
The favicon URL of our project.
8080
"""
8181

82-
LOGO_URL: str = "https://github.com/PyFunceble/logo/raw/master/Green/HD/3000x1080px.png" # noqa: E501
82+
LOGO_URL: str = (
83+
"https://github.com/PyFunceble/logo/raw/master/Green/HD/3000x1080px.png" # noqa: E501
84+
)
8385
"""
8486
The logo URL of our project.
8587
"""

pyfunceble_webworker/models/syntax.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,5 +70,4 @@ class SyntaxStatusBase(BaseModel):
7070
tested_at: datetime
7171

7272

73-
class SyntaxStatus(SyntaxStatusBase):
74-
...
73+
class SyntaxStatus(SyntaxStatusBase): ...

pyfunceble_webworker/routes/v1/endpoints/availability.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@
5151
limitations under the License.
5252
"""
5353

54-
5554
from fastapi import APIRouter, Body, Depends
5655
from PyFunceble import (
5756
DomainAndIPAvailabilityChecker,

0 commit comments

Comments
 (0)