We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 37045df + fd14b4e commit 4d8e67eCopy full SHA for 4d8e67e
.readthedocs.yaml
@@ -1,5 +1,8 @@
1
version: 2
2
3
+sphinx:
4
+ configuration: docs/conf.py
5
+
6
build:
7
os: "ubuntu-20.04"
8
tools:
payments/models.py
@@ -1,8 +1,12 @@
from __future__ import annotations
+from typing import TYPE_CHECKING
+if TYPE_CHECKING:
+ from collections.abc import Iterable
import json
9
import logging
-from collections.abc import Iterable
10
from uuid import uuid4
11
12
from django.db import models
0 commit comments