This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
from asyncio import AbstractEventLoop | |
from concurrent.futures import Executor | |
import functools | |
from typing import Any, Callable, Coroutine, TypeVar | |
R = TypeVar("R") | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.PHONY: help | |
.DEFAULT_GOAL := help | |
COMMAND_TEXT_WIDTH=17 | |
help: ## Show this help message | |
@printf "\n\033[1;31mProject Maintenance Commands\033[0m\n\n" | |
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m %-${COMMAND_TEXT_WIDTH}s \033[0m %s\n", $$1, $$2}' | |
@printf "\n" | |