Skip to content

Commit

Permalink
Add missing from __future__ import annotations imports
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner committed Oct 2, 2024
1 parent f3146c1 commit 028cf60
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sphinx_autobuild/__main__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
"""Entrypoint for ``python -m sphinx_autobuild``."""

from __future__ import annotations

import argparse
import shlex
import sys
Expand Down
2 changes: 2 additions & 0 deletions sphinx_autobuild/build.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
"""Logic for interacting with sphinx-build."""

from __future__ import annotations

import subprocess
import sys

Expand Down
2 changes: 2 additions & 0 deletions sphinx_autobuild/filter.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
"""Logic for ignoring paths."""

from __future__ import annotations

import fnmatch
import re
from pathlib import Path
Expand Down
2 changes: 2 additions & 0 deletions sphinx_autobuild/utils.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
"""Generic utilities."""

from __future__ import annotations

import shlex
import socket
import threading
Expand Down

0 comments on commit 028cf60

Please sign in to comment.