-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5934d7d
commit f0791b5
Showing
2 changed files
with
12 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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__ |