Skip to content

Commit

Permalink
Merge pull request #1939 from googlefonts/fix-issue-1938
Browse files Browse the repository at this point in the history
Fix messageFromServer method signature
  • Loading branch information
justvanrossum authored Jan 13, 2025
2 parents a096d25 + 102de05 commit 646e786
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fontra/core/remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ class RemoteClientProxy:
def __init__(self, connection):
self._connection = connection

async def messageFromServer(self, text):
return await self._connection.callMethod("messageFromServer", text)
async def messageFromServer(self, headline, message):
return await self._connection.callMethod("messageFromServer", headline, message)

async def externalChange(self, change, isLiveChange):
return await self._connection.callMethod("externalChange", change, isLiveChange)
Expand Down

0 comments on commit 646e786

Please sign in to comment.