From 4be245ab243283e3824377cbe81cfad495ab4880 Mon Sep 17 00:00:00 2001 From: Alex Rubinsteyn Date: Sun, 20 Oct 2019 17:02:40 -0400 Subject: [PATCH] py2.7 wants non-named self? --- isovar/protein_sequence.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isovar/protein_sequence.py b/isovar/protein_sequence.py index 683d42f..7fc8863 100644 --- a/isovar/protein_sequence.py +++ b/isovar/protein_sequence.py @@ -88,7 +88,7 @@ def __init__( # get ValueObject to initialize all of the fields specified in the # __slots__ field of both this object and TranslationKey ValueObject.__init__( - self=self, + self, amino_acids=amino_acids, contains_mutation=contains_mutation, mutation_start_idx=mutation_start_idx,