Skip to content

Commit

Permalink
Fix type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
zachmullen committed Dec 14, 2023
1 parent c474434 commit 8f4694b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion miqa/core/models/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from django.db.models.signals import pre_delete
from django.dispatch import receiver
from django_extensions.db.models import TimeStampedModel
from s3_file_field import S3FileField
from s3_file_field.fields import S3FileField

from miqa.core.conversion.nifti_to_zarr_ngff import convert_to_store_path

Expand Down
2 changes: 1 addition & 1 deletion miqa/core/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def _download_from_s3(path: str, public: bool) -> bytes:

@shared_task
def reset_demo():
Project.objects.delete()
Project.objects.all().delete()

demo_project = Project(
name='Demo Project',
Expand Down
4 changes: 2 additions & 2 deletions miqa/learning/evaluation_models.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from abc import ABC, abstractclassmethod
from abc import ABC, abstractmethod
from pathlib import Path
from typing import List

Expand All @@ -13,7 +13,7 @@ def __init__(self, uri: URI, expected_outputs: List[str]):
self.expected_outputs = expected_outputs
super().__init__()

@abstractclassmethod
@abstractmethod
def load(self):
pass

Expand Down

0 comments on commit 8f4694b

Please sign in to comment.