This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Link checker script for https://github.com/tiangolo/fastapi | |
| # Place it under fastapi/scripts or configure DOCS_ROOT below | |
| import os | |
| import re | |
| from dataclasses import dataclass, field | |
| from pathlib import Path | |
| from typing import Any, Callable, Generator | |
| Line = str |