diff options
author | Anthon van der Neut <anthon@mnt.org> | 2017-03-16 08:50:30 +0100 |
---|---|---|
committer | Anthon van der Neut <anthon@mnt.org> | 2017-03-16 08:50:30 +0100 |
commit | f75754aa90ea4d53f87aba5fce692185a25514c3 (patch) | |
tree | 678c37afebe1efd786d513e222a053a3cfe76a07 /emitter.py | |
parent | 65537ac45d2fe35a98322aea5e6056baa1aefd8a (diff) | |
download | ruamel.yaml-f75754aa90ea4d53f87aba5fce692185a25514c3.tar.gz |
some changes for mypy --strict
Diffstat (limited to 'emitter.py')
-rw-r--r-- | emitter.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1229,7 +1229,7 @@ class Emitter(object): def write_comment(self, comment): value = comment.value - # print('{:02d} {:02d} {}'.format(self.column, comment.start_mark.column, value)) + # print('{:02d} {:02d} {!r}'.format(self.column, comment.start_mark.column, value)) if value[-1] == '\n': value = value[:-1] try: |