python: run isort, add shebangs on all files

This commit is contained in:
Félix Piédallu
2024-02-07 14:49:55 +01:00
parent 5096b888ee
commit cea7ad2277
16 changed files with 64 additions and 38 deletions

View File

@ -1,14 +1,17 @@
#!venv/bin/python3
#!/usr/bin/env python3
import sys, os, time
import urllib.request, json
import json
import os
import re
import sys
import time
import urllib.request
from github import Github
import github
from github import Github
# Debug
from rich.traceback import install
install(width=150, show_locals=True, locals_max_length=None, locals_max_string=None)
#####