Skip to content

Commit 1c840d8

Browse files
committed
Fix __repr__ method in LOVDClient.
1 parent 4228a11 commit 1c840d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lovd/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ def __repr__(self) -> str:
294294
return (
295295
f"LOVDClient(email={self.email!r}, "
296296
f"target_gene_symbols={self.target_gene_symbols}, "
297-
f"user_agent={self.user_agent!r}), "
297+
f"user_agent={self.user_agent!r}, "
298298
f"logging_level={self.logging_level}, "
299299
f"is_progress_enabled={self.is_progress_enabled})"
300300
)

0 commit comments

Comments
 (0)