Skip to content

Commit 028cf60

Browse files
committed
Add missing from __future__ import annotations imports
1 parent f3146c1 commit 028cf60

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

sphinx_autobuild/__main__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
"""Entrypoint for ``python -m sphinx_autobuild``."""
22

3+
from __future__ import annotations
4+
35
import argparse
46
import shlex
57
import sys

sphinx_autobuild/build.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
"""Logic for interacting with sphinx-build."""
22

3+
from __future__ import annotations
4+
35
import subprocess
46
import sys
57

sphinx_autobuild/filter.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
"""Logic for ignoring paths."""
22

3+
from __future__ import annotations
4+
35
import fnmatch
46
import re
57
from pathlib import Path

sphinx_autobuild/utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
"""Generic utilities."""
22

3+
from __future__ import annotations
4+
35
import shlex
46
import socket
57
import threading

0 commit comments

Comments
 (0)