Skip to content

Commit 75982ee

Browse files
committed
tools/utils: sort imports
Leave typing at the bottom.
1 parent b3bf40e commit 75982ee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/utils.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@
1616
from contextlib import contextmanager
1717
import functools
1818
import operator
19-
import re
2019
import os
21-
import sys
22-
import typing as T
2320
from pathlib import Path
2421
import platform
22+
import re
2523
import subprocess
24+
import sys
2625
import time
2726
import venv
27+
import typing as T
2828

2929
# a helper class which implements the same version ordering as RPM
3030
class Version:

0 commit comments

Comments
 (0)