Skip to content

Commit

Permalink
ScreenPyHQ#121 updating ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
bandophahita committed Jan 15, 2024
1 parent 870dee4 commit ee077e1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repos:
language_version: python3.12
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.1.5
rev: v0.1.13
hooks:
- id: ruff
- repo: https://github.com/pre-commit/mirrors-mypy
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ mypy = {version = "*", optional = true}
pre-commit = {version = "*", optional = true}
pytest = {version = "*", optional = true}
pytest-mock = {version = "*", optional = true}
ruff = {version = "*", optional = true}
ruff = {version = ">=0.1.13", optional = true}
screenpy-adapter_allure = {version = "^4.0.1", optional = true}
screenpy-appium = {version = "*", optional = true}
screenpy-playwright = {version = "*", optional = true}
Expand Down
2 changes: 1 addition & 1 deletion screenpy/actor.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def cleans_up(self: SelfActor) -> None:
self.cleans_up_independent_tasks()
self.cleans_up_ordered_tasks()

def exit(self: SelfActor) -> None: # noqa: A003
def exit(self: SelfActor) -> None:
"""Direct the Actor to forget all their Abilities.
Aliases:
Expand Down

0 comments on commit ee077e1

Please sign in to comment.