Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion alembic/ddl/postgresql.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ def _dialect_options(
self, item: Union[Index, UniqueConstraint]
) -> Tuple[Any, ...]:
# only the positive case is returned by sqlalchemy reflection so
# None and False are threated the same
# None and False are treated the same
if item.dialect_kwargs.get("postgresql_nulls_not_distinct"):
return ("nulls_not_distinct",)
return ()
Expand Down
2 changes: 1 addition & 1 deletion docs/build/api/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ API Details
===========

Alembic's internal API has many public integration points that can be used
to extend Alembic's functionality as well as to re-use its functionality
to extend Alembic's functionality as well as to reuse its functionality
in new ways. As the project has grown, more APIs are created and exposed
for this purpose.

Expand Down
4 changes: 2 additions & 2 deletions docs/build/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -874,7 +874,7 @@ Changelog
:tickets: 1261

Fixed format string logged when running a post write hook
Pull request curtesy of Mathieu Défosse.
Pull request courtesy of Mathieu Défosse.

.. change::
:tags: feature, operations
Expand Down Expand Up @@ -5762,7 +5762,7 @@ Changelog

The command line runner has been organized
into a reusable CommandLine object, so that other
front-ends can re-use the argument parsing built
front-ends can reuse the argument parsing built
in.

.. change::
Expand Down
2 changes: 1 addition & 1 deletion tests/test_script_production.py
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,7 @@ def process_revision_directives(context, rev, generate_revisions):

def test_programmatic_command_option(self):
def process_revision_directives(context, rev, generate_revisions):
generate_revisions[0].message = "test programatic"
generate_revisions[0].message = "test programmatic"
generate_revisions[0].upgrade_ops = ops.UpgradeOps(
ops=[
ops.CreateTableOp(
Expand Down
2 changes: 1 addition & 1 deletion tools/toxnox.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
sections for nox tests, which include tags that indicate various combinations
of those parameters in such a way that it's somewhat similar to how
we were using the tox project; where individual dash-separated tags could
be added to add more specificity to the suite configuation, or omitting them
be added to add more specificity to the suite configuration, or omitting them
would fall back to defaults.


Expand Down