I’ve just figured out a solution for that – as I also needed the comments without the <p> tags wrapped around them.
Remove the following line from your comments.php file in the folder wp-content/themes/YOUR_THEME_FOLDER
<?php comment_text() ?>
Now place it with:
<?php echo $comment->comment_content; ?>
And that’s it!