Streamline Python file headers somewhat

- Add coding statement
  - Import all modules in one line where possible
  - Order: __future__, typing, plain imports, from imports,
    janware modules

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2025-07-10 05:14:06 +02:00
commit 428692ea3a
21 changed files with 50 additions and 40 deletions

View file

@ -1,15 +1,8 @@
import os
import sys
import argparse
import importlib
import inspect
import re
import pickle
import asyncio
from argparse import ArgumentParser
from typing import Optional
# -*- coding: utf-8 -*-
import cProfile
from typing import Optional
import os, sys, argparse, importlib, inspect, re, pickle, asyncio, cProfile
from argparse import ArgumentParser
import jwutils
from jwutils.log import *