forked from kornicameister/loguru-mypy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Accept numbers (int,float) for loguru calls (kornicameister#79)
* Accept numbers (int,float) for loguru calls Partially: kornicameister#49
- Loading branch information
1 parent
89f76ad
commit c176016
Showing
2 changed files
with
19 additions
and
3 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,9 @@ | ||
--- | ||
- case: numbers | ||
main: | | ||
from loguru import logger | ||
logger.info(123) | ||
logger.debug(123.3) | ||
logger.trace(1) | ||
logger.error(.3) |