Skip to content

Commit

Permalink
Fix typos again
Browse files Browse the repository at this point in the history
Found via `codespell -H`
  • Loading branch information
kianmeng committed Feb 19, 2024
1 parent d5e7fc0 commit d4ff42b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ Chore that needs to be done:

* [ ] Add newsfragment `pipenv run towncrier create [issue_number].[type].rst`

Types are defined in the pyproject.toml, issue_numer either from issue tracker or the Pull request number
Types are defined in the pyproject.toml, issue_number either from issue tracker or the Pull request number
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ it'll be on a docker machine or running remotely or locally.
Using SQLAlchemy to initialise basic database state
+++++++++++++++++++++++++++++++++++++++++++++++++++

How to use SQLAlchemy for common initalisation:
How to use SQLAlchemy for common initialisation:

.. code-block:: python
Expand Down
2 changes: 1 addition & 1 deletion newsfragments/865.misc.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Fix DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled f

`datetime.datetime.utcnow` has been deprecated by Python and will soon be removed by Python 3.14 (see warning text below)

The following warning used to pop up everytime someone with a recent version of Python (3.12+) uses this plugin
The following warning used to pop up every time someone with a recent version of Python (3.12+) uses this plugin

.. code-block::
Expand Down
2 changes: 1 addition & 1 deletion pytest_postgresql/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def get_postgresql_option(option: str) -> Any:


def detect_paths(load_paths: List[str]) -> List[Union[Path, str]]:
"""Covnerts path to sql files to Path instances."""
"""Converts path to sql files to Path instances."""
converted_load_paths: List[Union[Path, str]] = []
for path in load_paths:
if path.endswith(".sql"):
Expand Down
2 changes: 1 addition & 1 deletion tests/examples/test_postgres_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


def test_postgres_options(postgresql: Any) -> None:
"""Check if the max_connections is set as defined in mater test."""
"""Check if the max_connections is set as defined in master test."""
cur = postgresql.cursor()
cur.execute("SHOW max_connections")
assert cur.fetchone() == ("16",)

0 comments on commit d4ff42b

Please sign in to comment.