Skip to content

Commit

Permalink
fix typos and comments and make a cooler dependency condition (h/t @b…
Browse files Browse the repository at this point in the history
  • Loading branch information
perrygoy committed Feb 2, 2024
1 parent 3cf2e65 commit 5165164
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ pydantic = "*"
pydantic-settings = "*"
PyHamcrest = ">=2.0.0"
python = "^3.8"
tomli = "^2.0.1"
tomli = {version = ">=2.0.1", python = "<3.11"}
typing_extensions = ">=4.8.0"

# convenience packages for development of screenpy only
Expand Down Expand Up @@ -188,7 +188,7 @@ ignore = [
]


[tool.rufflint.isort]
[tool.ruff.lint.isort]
combine-as-imports = true
split-on-trailing-comma = true
known-first-party = ["screenpy", "tests"]
Expand Down
2 changes: 1 addition & 1 deletion screenpy/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import tomli as tomllib


# The following pyproject.toml functions were taken and adapted from Black:
# The logic in PyprojectTomlConfig was taken and adapted from Black:
# https://github.com/psf/black/blob/main/src/black/files.py


Expand Down

0 comments on commit 5165164

Please sign in to comment.