Skip to content

Commit

Permalink
sync pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
bandophahita committed Feb 17, 2024
1 parent 7a7eb67 commit 3cc514d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ extend-exclude = '''
target-version = "py38" # minimum supported version
line-length = 88 # same as Black.
extend-exclude = [
"__init__.py",
"__version__.py",
"docs",
]

Expand Down Expand Up @@ -124,6 +122,7 @@ split-on-trailing-comma = false
"FBT", # using a boolean as a test object is useful!
"PLR", # likewise using specific numbers and strings in tests.
]
"__version__.py" = ["D"]


################################################################################
Expand Down
18 changes: 9 additions & 9 deletions screenpy_selenium/__init__.py
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
# -*- coding: utf-8 -*-

# ░█▀▀▀█ █▀▀ █▀▀█ █▀▀ █▀▀ █▀▀▄ ░█▀▀█ █ █ ░█▀▀▀█ █▀▀ █ █▀▀ █▀▀▄ ▀ █ █ █▀▄▀█
# ▀▀▀▄▄ █ █▄▄▀ █▀▀ █▀▀ █ █ ░█▄▄█ █▄▄█ ▀▀▀▄▄ █▀▀ █ █▀▀ █ █ ▀█▀ █ █ █ ▀ █
# ░█▄▄▄█ ▀▀▀ ▀ ▀▀ ▀▀▀ ▀▀▀ ▀ ▀ ░█ ▄▄▄█ ░█▄▄▄█ ▀▀▀ ▀▀▀ ▀▀▀ ▀ ▀ ▀▀▀ ▀▀▀ ▀ ▀

"""
ScreenPy Selenium
ScreenPy Selenium.
FADE IN:
INT. SITEPACKAGES DIRECTORY
INT. SITEPACKAGES DIRECTORY.
ScreenPy Selenium is an extension for ScreenPy, enabling interaction with
Selenium.
:copyright: (c) 2022–2023, Perry Goy.
:copyright: (c) 2022-2024, Perry Goy.
:license: MIT, see LICENSE for more details.
"""

from . import abilities, actions, questions, resolutions
from .abilities import * # noqa: F401, F403
from .actions import * # noqa: F401, F403
from .abilities import * # noqa: F403
from .actions import * # noqa: F403
from .exceptions import BrowsingError, TargetingError
from .protocols import Chainable
from .questions import * # noqa: F401, F403
from .resolutions import * # noqa: F401, F403
from .questions import * # noqa: F403
from .resolutions import * # noqa: F403
from .target import Target

__all__ = [
Expand Down
4 changes: 2 additions & 2 deletions screenpy_selenium/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
░█▄▄▄█ ▀▀▀ ▀ ▀▀ ▀▀▀ ▀▀▀ ▀ ▀ ░█ ▄▄▄█ ░█▄▄▄█ ▀▀▀ ▀▀▀ ▀▀▀ ▀ ▀ ▀▀▀ ▀▀▀ ▀ ▀
"""

import importlib.metadata as importlib_metadata
import importlib.metadata

metadata = importlib_metadata.metadata("screenpy_selenium")
metadata = importlib.metadata.metadata("screenpy_selenium")

__title__ = metadata["Name"]
__description__ = metadata["Summary"]
Expand Down

0 comments on commit 3cc514d

Please sign in to comment.