Skip to content

Commit

Permalink
fix: Readd removed __str__() method
Browse files Browse the repository at this point in the history
  • Loading branch information
rumpelsepp committed Sep 29, 2023
1 parent ee87117 commit 51f02bd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/gallia/transports/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,9 @@ def qs_flat(self) -> dict[str, str]:
d[k] = v[0]
return d

def __str__(self) -> str:
return self.raw


class TransportProtocol(Protocol):
mutex: asyncio.Lock
Expand Down

0 comments on commit 51f02bd

Please sign in to comment.