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,15 +1,16 @@
import os
import hmac
import shlex
import hashlib
#!/usr/bin/env python3
import asyncio
import hashlib
import hmac
import os
import shlex
import tempfile
from make_readme import generate_READMEs
from sanic import Sanic, response
from sanic.response import text
from make_readme import generate_READMEs
app = Sanic(__name__)
github_webhook_secret = open("github_webhook_secret", "r").read().strip()