summaryrefslogtreecommitdiffstats
path: root/docs/docs/limitations.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-12-17 14:36:26 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-12-17 14:36:33 +0000
commit665666d6f4213da8db57ebb480947b7caf1fe382 (patch)
tree0cac5d322dfe861a6de62b04fb916cef6dbe4510 /docs/docs/limitations.md
parentReleasing debian version 3.0.0~a1-2. (diff)
downloadpendulum-665666d6f4213da8db57ebb480947b7caf1fe382.tar.xz
pendulum-665666d6f4213da8db57ebb480947b7caf1fe382.zip
Merging upstream version 3.0.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'docs/docs/limitations.md')
-rw-r--r--docs/docs/limitations.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/docs/limitations.md b/docs/docs/limitations.md
index 7deff23..913aca1 100644
--- a/docs/docs/limitations.md
+++ b/docs/docs/limitations.md
@@ -4,7 +4,7 @@ Even though the `DateTime` class is a subclass of `datetime`,
there are some rare cases where it can't replace the native class directly.
Here is a list (non-exhaustive) of the reported cases with a possible solution, if any:
-* `sqlite3` will use the the `type()` function to determine the type of the object by default. To work around it you can register a new adapter:
+* `sqlite3` will use the `type()` function to determine the type of the object by default. To work around it you can register a new adapter:
```python
import pendulum
@@ -13,7 +13,7 @@ Here is a list (non-exhaustive) of the reported cases with a possible solution,
register_adapter(pendulum.DateTime, lambda val: val.isoformat(' '))
```
-* `mysqlclient` (former `MySQLdb`) and `PyMySQL` will use the the `type()` function to determine the type of the object by default. To work around it you can register a new adapter:
+* `mysqlclient` (former `MySQLdb`) and `PyMySQL` will use the `type()` function to determine the type of the object by default. To work around it you can register a new adapter:
```python
import pendulum