Skip to content

Commit 667cd01

Browse files
committed
Sort imports
1 parent 7583b17 commit 667cd01

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

build_docs.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -22,23 +22,23 @@
2222

2323
from __future__ import annotations
2424

25-
from argparse import ArgumentParser, Namespace
26-
from collections.abc import Iterable, Sequence
27-
from contextlib import suppress, contextmanager
28-
from dataclasses import dataclass
2925
import filecmp
3026
import json
3127
import logging
3228
import logging.handlers
33-
from functools import total_ordering
34-
from os import getenv, readlink
3529
import re
3630
import shlex
3731
import shutil
3832
import subprocess
3933
import sys
34+
from argparse import ArgumentParser, Namespace
4035
from bisect import bisect_left as bisect
36+
from collections.abc import Iterable, Sequence
37+
from contextlib import contextmanager, suppress
38+
from dataclasses import dataclass
4139
from datetime import datetime as dt, timezone
40+
from functools import total_ordering
41+
from os import getenv, readlink
4242
from pathlib import Path
4343
from string import Template
4444
from time import perf_counter, sleep

check_versions.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#!/usr/bin/env python
22

3-
from pathlib import Path
43
import argparse
54
import asyncio
65
import logging
76
import re
7+
from pathlib import Path
88

9+
import git
910
import httpx
1011
import urllib3
1112
from tabulate import tabulate
12-
import git
1313

1414
import build_docs
1515

0 commit comments

Comments
 (0)