diff options
author | Anthon van der Neut <anthon@mnt.org> | 2018-08-18 09:47:28 +0200 |
---|---|---|
committer | Anthon van der Neut <anthon@mnt.org> | 2018-08-18 09:47:28 +0200 |
commit | ba6beb48c620f861fcc120e272bf4b6798aff919 (patch) | |
tree | ac02a25c3745ea967fa61b4b2d02dad4c0cc9874 /scanner.py | |
parent | deeb75a3efb4a7ae0ab4b28c8b081d41329865f3 (diff) | |
download | ruamel.yaml-ba6beb48c620f861fcc120e272bf4b6798aff919.tar.gz |
updates for mypy and remove print statements
Diffstat (limited to 'scanner.py')
-rw-r--r-- | scanner.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1206,7 +1206,7 @@ class Scanner(object): if block_scalar_comment is not None: token.add_pre_comments([block_scalar_comment]) if len(trailing) > 0: - # print('trailing 1', trailing) # XXXXX + # nprint('trailing 1', trailing) # XXXXX # Eat whitespaces and comments until we reach the next token. comment = self.scan_to_next_token() while comment: |