mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-07-28 18:24:38 -05:00
improved codestyle, go back to == in requirements
This commit is contained in:
@@ -3,6 +3,8 @@ from django.db import models
|
||||
|
||||
class Reminder(models.Model):
|
||||
|
||||
document = models.ForeignKey("documents.Document",on_delete=models.DO_NOTHING)
|
||||
document = models.ForeignKey(
|
||||
"documents.Document", on_delete=models.DO_NOTHING
|
||||
)
|
||||
date = models.DateTimeField()
|
||||
note = models.TextField(blank=True)
|
||||
|
Reference in New Issue
Block a user