mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-11-03 03:16:10 -06:00 
			
		
		
		
	pep8
This commit is contained in:
		@@ -2,8 +2,6 @@ from django.core.management.base import BaseCommand
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
from documents.models import Log
 | 
					from documents.models import Log
 | 
				
			||||||
 | 
					
 | 
				
			||||||
from ...mixins import Renderable
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
class Command(BaseCommand):
 | 
					class Command(BaseCommand):
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -12,4 +10,3 @@ class Command(BaseCommand):
 | 
				
			|||||||
    def handle(self, *args, **options):
 | 
					    def handle(self, *args, **options):
 | 
				
			||||||
        for l in Log.objects.order_by("pk"):
 | 
					        for l in Log.objects.order_by("pk"):
 | 
				
			||||||
            print(l)
 | 
					            print(l)
 | 
				
			||||||
 | 
					 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user