Skip to content

Commit

Permalink
linter/rebase fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bandophahita committed Feb 2, 2024
1 parent 0dcfdf0 commit 55383a0
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 15 deletions.
28 changes: 14 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -115,21 +115,21 @@ select = [
"BLE", # flake8-blind-except
"C4", # flake8-comprehensions
"D", # pydocstyle
# "E", # pycodestyle error
# "EM", # flake8-errmsg
# "ERA", # eradicate
# "F", # Pyflakes
# "FA", # flake8-future-annotations
"E", # pycodestyle error
"EM", # flake8-errmsg
"ERA", # eradicate
"F", # Pyflakes
"FA", # flake8-future-annotations
# "FBT", # flake8-boolean-trap
# "FIX", # flake8-fixme
# "FLY", # flynt
# "I", # isort
# "ICN", # flake8-import-conventions
# "ISC", # flake8-implicit-str-concat
# "PGH", # pygrep-hooks
# "PIE", # flake8-pie
# "PL", # pylint
# "PT", # flake8-pytest-style
"FIX", # flake8-fixme
"FLY", # flynt
"I", # isort
"ICN", # flake8-import-conventions
"ISC", # flake8-implicit-str-concat
"PGH", # pygrep-hooks
"PIE", # flake8-pie
"PL", # pylint
"PT", # flake8-pytest-style
"Q", # flake8-quotes
"RET", # flake8-return
"RSE", # flake8-raise
Expand Down
2 changes: 1 addition & 1 deletion tests/test_questions.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from unittest import mock

import pytest
from screenpy import Actor, Answerable, Describable, ErrorKeeper, UnableToAnswer, Actor
from screenpy import Actor, Answerable, Describable, ErrorKeeper, UnableToAnswer
from selenium.common.exceptions import WebDriverException
from selenium.webdriver.common.alert import Alert as SeleniumAlert
from selenium.webdriver.remote.webelement import WebElement
Expand Down
1 change: 1 addition & 0 deletions tests/useful_mocks.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from __future__ import annotations

from typing import TYPE_CHECKING, cast
from unittest import mock

Expand Down

0 comments on commit 55383a0

Please sign in to comment.