Skip to content

Commit

Permalink
fix address type
Browse files Browse the repository at this point in the history
  • Loading branch information
fdev31 committed Apr 27, 2024
1 parent 36c0ff6 commit b3858b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyprland/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ async def run_client():
manager = Pyprland()

if sys.argv[1] == "version":
print("2.2.13-1") # Automatically updated version
print("2.2.13-4") # Automatically updated version
return

if sys.argv[1] == "edit":
Expand Down
2 changes: 1 addition & 1 deletion pyprland/plugins/scratchpads/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ async def _handle_multiwindow(self, scratch: Scratch, clients: list[ClientInfo])
if client["address"] == scratch.full_address:
continue
if match_fn(client[match_by], match_value): # type: ignore
address = client["address"][2:]
address = client["address"]
if address not in scratch.extra_addr:
scratch.extra_addr.add(address)

Expand Down

0 comments on commit b3858b6

Please sign in to comment.