Migrate to ruff (#6433)

This commit is contained in:
Maximilian Hils 2023-10-31 16:03:53 +01:00 committed by GitHub
parent 7f18545f3c
commit f55ee1d44f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
80 changed files with 190 additions and 216 deletions

View file

@ -3,7 +3,6 @@ import shutil
import subprocess
from pathlib import Path
here = Path(__file__).parent
for script in sorted((here / "scripts").glob("*.py")):

View file

@ -2,7 +2,6 @@
import screenplays
from clidirector import CliDirector
if __name__ == "__main__":
director = CliDirector()
screenplays.record_user_interface(director)

View file

@ -1,7 +1,6 @@
#!/usr/bin/env python3
from mitmproxy import flowfilter
print('<table class="table filtertable"><tbody>')
for i in flowfilter.help:
print("<tr><th>%s</th><td>%s</td></tr>" % i)