1👍
✅
It sounds like you didn’t close out one of your statements the line before. Look for unclosed parenthesis, quotations, or really any of the symbols listed in the error message that isn’t correct. In fact, with your latest, code, I spotted:
return (reverse('tags',[str(self.slug)])
You are missing one parenthesis. Try this:
return (reverse('tags',[str(self.slug)]))
Source:stackexchange.com