KIN-OBS-028: Переместить import re в алфавитный блок stdlib-импортов
Переместили 'import re' из строки 18 в правильное место (между 'import os' и 'import shlex') в соответствии с конвенцией #372: все stdlib-импорты идут единым блоком в алфавитном порядке. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
348aa07fec
commit
669ed2fbc9
1 changed files with 1 additions and 2 deletions
|
|
@ -7,6 +7,7 @@ import errno as _errno
|
|||
import json
|
||||
import logging
|
||||
import os
|
||||
import re
|
||||
import shlex
|
||||
import shutil
|
||||
import sqlite3
|
||||
|
|
@ -15,8 +16,6 @@ import time
|
|||
from pathlib import Path
|
||||
from typing import Any
|
||||
|
||||
import re
|
||||
|
||||
_logger = logging.getLogger("kin.runner")
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue