Skip to content

Commit

Permalink
fix: pipe character is only supported from python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Archento committed Oct 29, 2024
1 parent 856731d commit 0e3c104
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/src/uagents/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ def name(self) -> str:
return self._name or self.address[0:16]

@property
def domain(self) -> str | None:
def domain(self) -> Optional[str]:
"""
Get the domain name of the agent.
Expand Down

0 comments on commit 0e3c104

Please sign in to comment.