Skip to content

Commit

Permalink
Used black and isort
Browse files Browse the repository at this point in the history
  • Loading branch information
maximmasiutin authored and ppigazzini committed Jun 27, 2023
1 parent dd9d9bd commit 990a3c1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion server/fishtest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
import hashlib
from pathlib import Path

from fishtest.rundb import RunDb
from pyramid.authentication import AuthTktAuthenticationPolicy
from pyramid.authorization import ACLAuthorizationPolicy
from pyramid.config import Configurator
from pyramid.events import BeforeRender, NewRequest
from pyramid.session import SignedCookieSessionFactory

from fishtest import helpers
from fishtest.rundb import RunDb


def main(global_config, **settings):
Expand Down
8 changes: 2 additions & 6 deletions worker/games.py
Original file line number Diff line number Diff line change
Expand Up @@ -571,13 +571,9 @@ def find_arch(compiler):
and not ("nodotprod" in props["arch"])
):
arch = "armv8-dotprod"
elif (
"armv8" in props["arch"]
):
elif "armv8" in props["arch"]:
arch = "armv8"
elif (
"armv7" in props["arch"]
):
elif "armv7" in props["arch"]:
arch = "armv7"
elif (
"avx512vnni" in props["flags"]
Expand Down
2 changes: 1 addition & 1 deletion worker/sri.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"__version": 205, "updater.py": "PHFUVXcoxBFiW2hTqFN5q5WdAw2pK8uzFC7hyMUC3cLY5bGZPhL8TBGThtqDmcXd", "worker.py": "cCyr244zHs0k/Uur7lQlXSCsmGwCT7L+bSxrH4kLB6Dol2AsUCz/Lg+Bo2VPgQVk", "games.py": "bK3SvG/8oGKOZlgT4oczbfgzOS6LMOesBKWWVI4P74z1cMJB9C2cqqas7U42XO3x"}
{"__version": 205, "updater.py": "PHFUVXcoxBFiW2hTqFN5q5WdAw2pK8uzFC7hyMUC3cLY5bGZPhL8TBGThtqDmcXd", "worker.py": "cCyr244zHs0k/Uur7lQlXSCsmGwCT7L+bSxrH4kLB6Dol2AsUCz/Lg+Bo2VPgQVk", "games.py": "HTnCN/o3WYRaZHr3qBplAbhMNo/ZTjSrOc7Z3wddTdoAuxJ+dwr6QSxKV+de3y4g"}

0 comments on commit 990a3c1

Please sign in to comment.