WIP
This commit is contained in:
parent
e70a0584c9
commit
a7a5b5c8ea
43 changed files with 5531 additions and 9 deletions
|
|
@ -39,9 +39,7 @@ def check_required_dev_commands(*_: object, **__: object) -> list[CheckMessage]:
|
|||
if not (settings.DEBUG or getattr(settings, "TESTING", False)):
|
||||
return []
|
||||
|
||||
missing_commands: list[str] = [
|
||||
command for command in REQUIRED_DEV_COMMANDS if shutil.which(command) is None
|
||||
]
|
||||
missing_commands: list[str] = [command for command in REQUIRED_DEV_COMMANDS if shutil.which(command) is None]
|
||||
|
||||
if not missing_commands:
|
||||
return []
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue