-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- add some missing type hints - add a typing stub for core/info.py.in - introduce TMP_KEYWORDS to avoid changing types - simplify TaskTagSorter.get_first_letter to resolve a missing return error
- Loading branch information
1 parent
6da5c1e
commit ebf8706
Showing
5 changed files
with
29 additions
and
12 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
from typing import List | ||
|
||
NAME: str | ||
AUTHORS: str | ||
COPYRIGHT: str | ||
SHORT_DESCRIPTION: str | ||
URL: str | ||
CHAT_URL: str | ||
SOURCE_CODE_URL: str | ||
OPENHUB_URL: str | ||
REPORT_BUG_URL: str | ||
EMAIL: str | ||
VERSION: str | ||
AUTHORS_MAINTAINERS: List[str] | ||
AUTHORS_RELEASE_CONTRIBUTORS: List[str] | ||
ARTISTS: List[str] | ||
DOCUMENTERS: List[str] |
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
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
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