We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3beefbc commit c224c9dCopy full SHA for c224c9d
lib_template.jinja
@@ -21,7 +21,10 @@ if __name__ == "__main__":
21
location = Path(__file__)
22
pyi_file = location.parent / 'endpoint_wrapper.pyi'
23
import textwrap
24
- pyi = textwrap.dedent("""{{ pyi }}""")
+
25
+ # use triple single quotes to allow triple double quotes to
26
+ # occur in the pyi source.
27
+ pyi = textwrap.dedent('''{{ pyi }}''')
28
pyi_file.write_text(pyi)
29
print(f"dropped {pyi_file}.")
30
0 commit comments