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
|
||||
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
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue