Skip to content

Commit 515a389

Browse files
mlpoalecthomas
authored andcommitted
gofmt
1 parent ba03a8b commit 515a389

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: lexers/p/python.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ func pythonRules() Rules {
6868
{Words(``, `\b`, `__annotations__`, `__bases__`, `__class__`, `__closure__`, `__code__`, `__defaults__`, `__dict__`, `__doc__`, `__file__`, `__func__`, `__globals__`, `__kwdefaults__`, `__module__`, `__mro__`, `__name__`, `__objclass__`, `__qualname__`, `__self__`, `__slots__`, `__weakref__`), NameVariableMagic, nil},
6969
},
7070
"numbers": {
71-
{`(\d+\.\d*|\d*\.\d+)([eE][+-]?[0-9]+)?j?`, LiteralNumberFloat, nil},
71+
{`(\d+\.\d*|\d*\.\d+)([eE][+-]?[0-9]+)?j?`, LiteralNumberFloat, nil},
7272
{`\d+[eE][+-]?[0-9]+j?`, LiteralNumberFloat, nil},
7373
{`0[0-7]+j?`, LiteralNumberOct, nil},
7474
{`0[bB][01]+`, LiteralNumberBin, nil},

0 commit comments

Comments
 (0)