From f0791b55ec40204ff0a296014e702ee021da0041 Mon Sep 17 00:00:00 2001 From: Marcel Wilson Date: Sat, 17 Feb 2024 13:11:03 -0600 Subject: [PATCH] sync pyproject.toml --- pyproject.toml | 3 +-- screenpy_requests/__init__.py | 19 +++++++++++-------- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3bc65ab..9136213 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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", ] @@ -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"] ################################################################################ diff --git a/screenpy_requests/__init__.py b/screenpy_requests/__init__.py index 43d7366..d7ab706 100644 --- a/screenpy_requests/__init__.py +++ b/screenpy_requests/__init__.py @@ -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__