Skip to content

Commit

Permalink
fix: linter
Browse files Browse the repository at this point in the history
  • Loading branch information
noliveleger committed Dec 19, 2024
1 parent eab6102 commit c40a7e0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Migration(migrations.Migration):
field=kpi.fields.file.ExtendedFileField(
db_index=True,
max_length=380,
storage=kpi.deployment_backends.kc_access.storage.KobocatS3Boto3Storage(),
storage=kpi.deployment_backends.kc_access.storage.KobocatS3Boto3Storage(), # noqa
upload_to=kobo.apps.openrosa.apps.logger.models.attachment.upload_to,
),
),
Expand All @@ -32,7 +32,7 @@ class Migration(migrations.Migration):
field=kpi.fields.file.ExtendedFileField(
max_length=380,
null=True,
storage=kpi.deployment_backends.kc_access.storage.KobocatS3Boto3Storage(),
storage=kpi.deployment_backends.kc_access.storage.KobocatS3Boto3Storage(), # noqa
upload_to=kobo.apps.openrosa.apps.logger.models.xform.upload_to,
),
),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Generated by Django 4.2.15 on 2024-12-19 21:31

from django.db import migrations, models
from django.db import migrations
import kobo.apps.openrosa.apps.main.models.meta_data
import kpi.deployment_backends.kc_access.storage
import kpi.fields.file
Expand All @@ -20,7 +20,7 @@ class Migration(migrations.Migration):
blank=True,
max_length=380,
null=True,
storage=kpi.deployment_backends.kc_access.storage.KobocatS3Boto3Storage(),
storage=kpi.deployment_backends.kc_access.storage.KobocatS3Boto3Storage(), # noqa
upload_to=kobo.apps.openrosa.apps.main.models.meta_data.upload_to,
),
),
Expand Down

0 comments on commit c40a7e0

Please sign in to comment.