parent
ed33205579
commit
0aabac4fe0
17
tests/data/cases/annotations.py
Normal file
17
tests/data/cases/annotations.py
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# regression test for #1765
|
||||||
|
class Foo:
|
||||||
|
def foo(self):
|
||||||
|
if True:
|
||||||
|
content_ids: Mapping[
|
||||||
|
str, Optional[ContentId]
|
||||||
|
] = self.publisher_content_store.store_config_contents(files)
|
||||||
|
|
||||||
|
# output
|
||||||
|
|
||||||
|
# regression test for #1765
|
||||||
|
class Foo:
|
||||||
|
def foo(self):
|
||||||
|
if True:
|
||||||
|
content_ids: Mapping[str, Optional[ContentId]] = (
|
||||||
|
self.publisher_content_store.store_config_contents(files)
|
||||||
|
)
|
Loading…
Reference in New Issue
Block a user