Skip to content

Commit

Permalink
🚨 Fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
znatty22 committed May 29, 2024
1 parent 5d8bb9b commit 1702b56
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
4 changes: 0 additions & 4 deletions tests/sample_relationship/test_sample_relationship_models.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import pytest
from sqlalchemy.exc import IntegrityError

from dataservice.extensions import db
from dataservice.api.study.models import Study
from dataservice.api.participant.models import Participant
from dataservice.api.sample.models import Sample
from dataservice.api.sample_relationship.models import (
SampleRelationship,
Expand Down Expand Up @@ -181,4 +178,3 @@ def test_query_all_relationships(self):
assert 3 == SampleRelationship.query_all_relationships(
sr.parent.kf_id
).count()

Original file line number Diff line number Diff line change
@@ -1,18 +1,13 @@
import json
from pprint import pprint
from flask import url_for
from urllib.parse import urlparse
from sqlalchemy import or_

from dataservice.extensions import db
from dataservice.api.sample_relationship.models import SampleRelationship
from dataservice.api.sample.models import Sample
from dataservice.api.participant.models import Participant
from dataservice.api.study.models import Study
from tests.utils import FlaskTestCase
from tests.sample_relationship.common import create_relationships

from pprint import pprint

SAMPLE_RELATIONSHIPS_URL = 'api.sample_relationships'
SAMPLE_RELATIONSHIPS_LIST_URL = 'api.sample_relationships_list'
Expand Down

0 comments on commit 1702b56

Please sign in to comment.