Reputation: 7473
How can I type a single quote, without pycharm automatically inserting a closing quote? For example, typing '
in front of {}
:
'''say {}'''.format('a')
results in
'''say ''{}'''.format('a')
whereas what I want is
'''say '{}'''.format('a')
The intent is to enclose {}
in single quotes.
Upvotes: 2
Views: 1885
Reputation: 82590
Disable it like so:
Disable the pair quote and you will not have this problem.
Upvotes: 2