1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-14 08:17:13 +03:00

scripts/killswitch_test: One flake8 issue fixed

This commit is contained in:
Athanasius 2022-12-04 16:42:12 +00:00
parent a6f9a31fd9
commit ccdfd9a4fa
No known key found for this signature in database
GPG Key ID: 772697E181BB2767

View File

@ -29,7 +29,7 @@ KNOWN_KILLSWITCH_NAMES: list[str] = [
'plugins.eddb.journal.event.$event'
]
SPLIT_KNOWN_NAMES = list(map(lambda x: x.split('.'), KNOWN_KILLSWITCH_NAMES))
SPLIT_KNOWN_NAMES = [x.split('.') for x in KNOWN_KILLSWITCH_NAMES]
def match_exists(match: str) -> tuple[bool, str]: