We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd33185 commit 8c2baf6Copy full SHA for 8c2baf6
pytest_mypy_plugins/tests/test-paths-from-env.yml
@@ -26,4 +26,4 @@
26
- path: extras/extra_module.py
27
content: |
28
def extra_fn():
29
- pass
+ pass
pytest_mypy_plugins/tests/test-simple-cases.yml
@@ -1,13 +1,13 @@
1
- case: simplest_case
2
main: |
3
- a = 1
4
- b = 'hello'
+ a = 1
+ b = 'hello'
5
6
- class MyClass:
7
+ class MyClass:
8
9
- reveal_type(a) # N: Revealed type is "builtins.int"
10
- reveal_type(b) # N: Revealed type is "builtins.str"
+ reveal_type(a) # N: Revealed type is "builtins.int"
+ reveal_type(b) # N: Revealed type is "builtins.str"
11
12
13
- case: revealed_type_with_environment
0 commit comments