Typing Error in test_typing.py Functions test_kmer_class_add_right and test_kmer_class_add_left
The functions are not testing the Kmer class methods correctly due to the typing error
Correct the variable name error in the function code for test_kmer_class_add_right and test_kmer_class_add_left at lines 76 and 86. Change the code from:
RK = Kmer.from_dna(DNA(kmer))
to:
RK = Kmer.from_dna(DNA(rkmer))