format.py: don't write bytecode
This commit is contained in:
parent
38511ffccc
commit
50fae16f23
11
format.py
11
format.py
|
@ -1,25 +1,24 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
import sys
|
||||||
|
sys.dont_write_bytecode = True
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import base64
|
import base64
|
||||||
import csv
|
import csv
|
||||||
import hashlib
|
import hashlib
|
||||||
|
import imb
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
|
import requests
|
||||||
import string
|
import string
|
||||||
import subprocess
|
import subprocess
|
||||||
import typing
|
import typing
|
||||||
import urllib.parse
|
import urllib.parse
|
||||||
import xml.etree.ElementTree as ET
|
import xml.etree.ElementTree as ET
|
||||||
import requests
|
|
||||||
import imb
|
|
||||||
|
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from typing import NewType, TypedDict
|
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
|
_cache: Path | None = None
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue