<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">from django.core.management.base import NoArgsCommand
from forum.models import Comment

class Command(NoArgsCommand):
    def handle_noargs(self, **options):
        objs = Comment.objects.all()
        print objs</pre></body></html>