Skip to content

Commit 748fabe

Browse files
committed
🚨 dprint fmt
1 parent f62a294 commit 748fabe

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

‎README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -89,32 +89,32 @@ conda install conda-forge::scipy-typed
8989
### Q: Do I need to change my existing code?
9090

9191
**A:** No! `scipy-stubs` works with your existing code without any modifications.
92-
Just install it and your type checker and IDE will automatically use the type information.
92+
Just install it and your type checker and IDE will automatically use the type information.
9393

9494
### Q: Will this slow down my code?
9595

9696
**A:** Not at all. Type stubs are only used during development and type checking.
97-
They have zero runtime overhead since they're not imported when your code runs.
97+
They have zero runtime overhead since they're not imported when your code runs.
9898

9999
### Q: What if I don't use type hints in my code?
100100

101101
**A:** You'll still benefit! Your IDE will provide better autocompletion and error detection
102-
even without explicit type annotations in your code.
102+
even without explicit type annotations in your code.
103103

104104
### Q: Can I use this with Jupyter notebooks?
105105

106106
**A:** Yes! Most modern Jupyter environments (JupyterLab, VS Code notebooks) support
107-
type checking and will benefit from `scipy-stubs`.
107+
type checking and will benefit from `scipy-stubs`.
108108

109109
### Q: What's the difference between this and the built-in scipy typing?
110110

111111
**A:** SciPy itself has limited type annotations. `scipy-stubs` provides comprehensive,
112-
precise type information for the entire SciPy API, including shape-typing and advanced type features.
112+
precise type information for the entire SciPy API, including shape-typing and advanced type features.
113113

114114
### Q: How do I know if it's working?
115115

116116
**A:** You should see improved autocompletion in your IDE and more precise type information.
117-
You can also run `pyright` or another type checker on your code to see type checking in action.
117+
You can also run `pyright` or another type checker on your code to see type checking in action.
118118

119119
### Q: How much of SciPy is covered?
120120

@@ -123,8 +123,8 @@ conda install conda-forge::scipy-typed
123123
### Q: What static type-checkers are supported?
124124

125125
**A:** `scipy-stubs` is compatible with [`pyright`](https://pyright.readthedocs.io/en/latest/index.html) (a.k.a. pylance),
126-
[`basedpyright`](https://github.com/DetachHead/basedpyright), and [`mypy`](https://github.com/python/mypy).
127-
We only support the latest versions of these type-checkers, so make sure to keep them up to date.
126+
[`basedpyright`](https://github.com/DetachHead/basedpyright), and [`mypy`](https://github.com/python/mypy).
127+
We only support the latest versions of these type-checkers, so make sure to keep them up to date.
128128

129129
## Versioning and requirements
130130

0 commit comments

Comments
 (0)