format.py: don't write bytecode

This commit is contained in:
Artemis Tosini 2024-01-20 06:49:29 +00:00
parent 38511ffccc
commit 50fae16f23
Signed by: artemist
GPG key ID: EE5227935FE3FF18

View file

@ -1,25 +1,24 @@
#!/usr/bin/env python3
import sys
sys.dont_write_bytecode = True
import argparse
import base64
import csv
import hashlib
import imb
import json
import os
import requests
import string
import subprocess
import typing
import urllib.parse
import xml.etree.ElementTree as ET
import requests
import imb
from pathlib import Path
from typing import NewType, TypedDict
# A lot of stuff needs to be in the same directory, just chdir
# os.chdir(os.path.dirname(os.path.realpath(__file__)))
_cache: Path | None = None