Skip to content

Commit

Permalink
there is no future in python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Jhsmit committed Oct 19, 2023
1 parent 8333b63 commit d087ade
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/test_hdxrate.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Tests for `hdxrate` package."""

from __future__ import annotations
import numpy as np
from hdxrate import k_int_from_sequence
from hdxrate.hdxrate import get_side_chain_dictionary
Expand All @@ -15,12 +14,12 @@


@pytest.fixture()
def seq1() -> list[str]:
def seq1():
return list("AAAWADEAA")


@pytest.fixture()
def seq2() -> list[str]:
def seq2():
"""sequence two a sequence of the pairwise combination of all side chains"""
k_reference = {"D": 3.87, "E": 4.33, "H": 7.0} # DH
chains_dict = get_side_chain_dictionary(278, 8, k_reference)
Expand Down

0 comments on commit d087ade

Please sign in to comment.