guan404ming opened a new pull request, #18717:
URL: https://github.com/apache/tvm/pull/18717

   ## Why
   
   - f.readlines() returns lines that already have \n at the end                
                      
   - Script then does "\n".join(content), which adds another \n between each 
line
   - Result: every line gets a blank line after it → file becomes malformed → 
lint fails              
   
   ## How
   
   - "\n".join(content) to "".join(content)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to