1
0
mirror of https://github.com/esphome/esphome.git synced 2025-06-18 22:35:40 +01:00

[code-quality] Organise script imports ()

This commit is contained in:
Jesse Hills
2024-08-07 15:46:37 +12:00
committed by GitHub
parent 1e63fddf36
commit 73f786c606
8 changed files with 45 additions and 50 deletions

@ -1,19 +1,20 @@
#!/usr/bin/env python3
from helpers import (
styled,
print_error_for_file,
get_output,
get_err,
git_ls_files,
filter_changed,
)
import argparse
import colorama
import os
import re
import sys
import colorama
from helpers import (
filter_changed,
get_err,
get_output,
git_ls_files,
print_error_for_file,
styled,
)
curfile = None