Skip to content

Commit a636585

Browse files
author
batlab
committed
Fix get_pipe for multiline list of named params
1 parent 9e6c780 commit a636585

File tree

1 file changed

+1
-1
lines changed
  • pythonx/cm_sources

1 file changed

+1
-1
lines changed

pythonx/cm_sources/r.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def get_pipe(buff, numline, numcol):
4040
"""
4141

4242
r_pipe = re.compile(r'([\w_\.\$]+)\s?%>%')
43-
r_block = re.compile(r'[^\(]+\s?(<-|=)\s?')
43+
r_block = re.compile(r'<-')
4444

4545
no_pipe = 0
4646
for numl in range(numline-1, -1, -1):

0 commit comments

Comments
 (0)