Skip to content

Commit

Permalink
Update besapi.py
Browse files Browse the repository at this point in the history
fix issue with tuples
  • Loading branch information
jgstew authored Mar 7, 2024
1 parent 1799729 commit 13dfc74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/besapi/besapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ def session_relevance_array(self, relevance, **kwargs):

def session_relevance_string(self, relevance, **kwargs):
"""Get Session Relevance Results string"""
rel_result_array = self.session_relevance_array(relevance, **kwargs)
rel_result_array = self.session_relevance_array("(it as string) of " + relevance, **kwargs)
return "\n".join(rel_result_array)

def login(self):
Expand Down

0 comments on commit 13dfc74

Please sign in to comment.