diff options
author | Kornelius Kalnbach <murphy@rubychan.de> | 2019-11-24 15:22:21 +0100 |
---|---|---|
committer | Kornelius Kalnbach <murphy@rubychan.de> | 2019-11-24 15:22:21 +0100 |
commit | b5b3430d4635682b767c44469e28a70fe234187e (patch) | |
tree | 97eeeea923848158dfedd8e60142511a72839363 /lib/coderay/scanners/python.rb | |
parent | 591c67b65dc4daada24ed1809605e9cbcfb3336b (diff) | |
download | coderay-b5b3430d4635682b767c44469e28a70fe234187e.tar.gz |
fix spaces around operators (RuboCop)
Diffstat (limited to 'lib/coderay/scanners/python.rb')
-rw-r--r-- | lib/coderay/scanners/python.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/coderay/scanners/python.rb b/lib/coderay/scanners/python.rb index 09c8b6e..5da553a 100644 --- a/lib/coderay/scanners/python.rb +++ b/lib/coderay/scanners/python.rb @@ -63,7 +63,7 @@ module Scanners NAME = / [[:alpha:]_] \w* /x # :nodoc: ESCAPE = / [abfnrtv\n\\'"] | x[a-fA-F0-9]{1,2} | [0-7]{1,3} /x # :nodoc: - UNICODE_ESCAPE = / u[a-fA-F0-9]{4} | U[a-fA-F0-9]{8} | N\{[-\w ]+\} /x # :nodoc: + UNICODE_ESCAPE = / u[a-fA-F0-9]{4} | U[a-fA-F0-9]{8} | N\{[-\w ]+\} /x # :nodoc: OPERATOR = / \.\.\. | # ellipsis |