Skip to content

Commit

Permalink
Fix typos in pyproject.toml comments
Browse files Browse the repository at this point in the history
  • Loading branch information
johnthagen committed Jan 24, 2025
1 parent fd90112 commit 4063e07
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
# Include this classifier to prevent accidently publishing private code to PyPI.
# Include this classifier to prevent accidentally publishing private code to PyPI.
# https://pypi.org/classifiers/
"Private :: Do Not Upload",
]
Expand Down Expand Up @@ -120,7 +120,7 @@ extend-ignore = [
]
unfixable = [
# Disable removing unused imports by default and only enable within nox so editors don't delete
# unnused imports while the user is in the middle of editing a file on save.
# unused imports while the user is in the middle of editing a file on save.
"F401",
]

Expand All @@ -146,7 +146,7 @@ filterwarnings = [
# When running tests, treat warnings as errors (e.g. -Werror).
# See: https://docs.pytest.org/en/latest/reference/reference.html#confval-filterwarnings
"error",
# Add additional warning supressions as needed here. For example, if a third-party library
# Add additional warning suppressions as needed here. For example, if a third-party library
# is throwing a deprecation warning that needs to be fixed upstream:
# "ignore::DeprecationWarning:typer",
]
Expand Down

0 comments on commit 4063e07

Please sign in to comment.