Skip to content

Commit 52f6ef8

Browse files
committed
update cruft.
1 parent 2bd1309 commit 52f6ef8

7 files changed

Lines changed: 12 additions & 29 deletions

File tree

.cruft.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"template": "https://github.com/ScreenPyHQ/cookiecutter_screenpy",
3-
"commit": "b2e674a3486fadc2c666cc51493bb516fdf75753",
3+
"commit": "7d8cb97c36c257860ad555b8becd96115b64234d",
44
"checkout": null,
55
"context": {
66
"cookiecutter": {
@@ -12,7 +12,7 @@
1212
"author_email": "perry.goy@gmail.com",
1313
"github_username": "ScreenPyHQ",
1414
"_template": "https://github.com/ScreenPyHQ/cookiecutter_screenpy",
15-
"_commit": "b2e674a3486fadc2c666cc51493bb516fdf75753"
15+
"_commit": "7d8cb97c36c257860ad555b8becd96115b64234d"
1616
}
1717
},
1818
"directory": null

.pre-commit-config.yaml

Lines changed: 0 additions & 18 deletions
This file was deleted.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022-2024 Perry Goy
3+
Copyright (c) 2022-2025 Perry Goy
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

pyproject.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,12 @@ select = [
4848
"ALL", # let's get all the new hotness and ignore as we need!
4949
]
5050
ignore = [
51-
"D107", # missing __init__ docstring, we do that in the class docstring.
52-
"D203", # one blank line before class docstring, no thanks!
53-
"D212", # multi line summary first line, we want a one line summary.
54-
"E501", # black handles our line limits.
55-
"N818", # we like our conventions with readable error classes.
51+
"D107", # missing __init__ docstring, we do that in the class docstring.
52+
"D203", # one blank line before class docstring, no thanks!
53+
"D212", # multi line summary first line, we want a one line summary.
54+
"E501", # black handles our line limits.
55+
"N818", # we like our conventions with readable error classes.
56+
"S608", # we will not have SQL injection concerns. :P
5657
]
5758

5859
extend-safe-fixes = [

screenpy_playwright/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
ScreenPy Playwright is an extension for ScreenPy which enables Actors to use
99
the Playwright browser automation tool.
1010
11-
:copyright: (c) 2019-2024 by Perry Goy.
11+
:copyright: (c) 2019-2025 by Perry Goy.
1212
:license: MIT, see LICENSE for more details.
1313
"""
1414

screenpy_playwright/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
__author__ = metadata["Author"]
2222
__author_email__ = metadata["Author-email"]
2323
__license__ = metadata["License"]
24-
__copyright__ = f"2019-2024 {__author__}"
24+
__copyright__ = f"2019-2025 {__author__}"

screenpy_playwright/actions/select.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def option_to_log(self) -> str:
9797

9898
def describe(self) -> str:
9999
"""Describe the Action in present tense."""
100-
return f"Select '{self.option_to_log}' from the {self.target}." # noqa: S608
100+
return f"Select '{self.option_to_log}' from the {self.target}."
101101

102102
@beat("{} selects '{option_to_log}' from the {target}.")
103103
def perform_as(self, the_actor: Actor) -> None:

0 commit comments

Comments
 (0)