1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 23:35:52 +02:00

dmypy: add page (#17292)

Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com>
This commit is contained in:
koalp 2025-07-23 18:24:26 +02:00 committed by GitHub
parent 7e281252f3
commit 980ecfc801
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

21
pages/common/dmypy.md Normal file
View file

@ -0,0 +1,21 @@
# dmypy
> Type check Python code, running `mypy` as a daemon for better speed.
> See also: `mypy` for more options to use with check and run.
> More information: <https://mypy.readthedocs.io/en/stable/mypy_daemon.html>.
- Type check a file, and start the daemon if it is not running:
`dmypy check -- {{path/to/file.py}}`
- Start the daemon:
`dmypy start`
- Type check a file (requires the daemon to be running):
`dmypy run -- {{path/to/file.py}}`
- Stop the daemon:
`dmypy stop`