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 5934d7d commit f0791b5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 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
19 changes: 11 additions & 8 deletions screenpy_requests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
# -*- coding: utf-8 -*-

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

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

from .abilities import * # noqa: import all for ease-of-use
from .actions import * # noqa: import all for ease-of-use
from .questions import * # noqa: import all for ease-of-use
from . import abilities, actions, questions
from .abilities import * # noqa: F403
from .actions import * # noqa: F403
from .questions import * # noqa: F403

__all__ = abilities.__all__ + actions.__all__ + questions.__all__

0 comments on commit f0791b5

Please sign in to comment.