Skip to content

Commit 3eefd78

Browse files
committed
fix: Typos
1 parent b188923 commit 3eefd78

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ All notable changes to this project will be documented in this file.
77
- Improve the test coverage. Add error handling tests
88
- Performance tests
99
- Include callables with default args in serialization
10-
- Support of SQLalchemy 2.0 syntax
10+
- Support of SQLAlchemy 2.0 syntax
1111

sqlalchemy_serializer/serializer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@
2828

2929

3030
class SerializerMixin:
31-
"""Mixin for retrieving public fields of SQLAlchemy-model in json-compatible format
31+
"""Mixin for retrieving public fields of SQLAlchemy model in json-compatible format
3232
with no pain
3333
It can be inherited to redefine get_tzinfo callback, datetime formats or to add
3434
some extra serialization logic
3535
"""
3636

3737
# Default exclusive schema.
38-
# If left blank, serializer becomes greedy and takes all SQLAlchemy-model's attributes
38+
# If left blank, serializer becomes greedy and takes all SQLAlchemy model's attributes
3939
serialize_only: tuple = ()
4040

4141
# Additions to default schema. Can include negative rules

0 commit comments

Comments
 (0)