From: 
Subject: Debian changes

The Debian packaging of python-iometer is maintained in git, using a workflow
similar to the one described in dgit-maint-merge(7).
The Debian delta is represented by this one combined patch; there isn't a
patch queue that can be represented as a quilt series.

A detailed breakdown of the changes is available from their canonical
representation -- git commits in the packaging repository.
For example, to see the changes made by the Debian maintainer in the first
upload of upstream version 1.2.3, you could use:

    % git clone https://git.dgit.debian.org/python-iometer
    % cd python-iometer
    % git log --oneline 1.2.3..debian/1.2.3-1 -- . ':!debian'

(If you have dgit, use `dgit clone python-iometer`, rather than plain `git clone`.)

We don't use debian/source/options single-debian-patch because it has bugs.
Therefore, NMUs etc. may nevertheless have made additional patches.

---

diff --git a/iometer/client.py b/iometer/client.py
index 62d9c1a..dbe152b 100644
--- a/iometer/client.py
+++ b/iometer/client.py
@@ -4,7 +4,7 @@ from dataclasses import dataclass
 from typing import AsyncGenerator, Optional, Self
 
 from aiohttp import ClientSession, ClientResponseError
-from aiohttp_sse_client import client as sse_client
+from aiohttp_sse_client2 import client as sse_client
 from yarl import URL
 
 from .exceptions import (
@@ -192,4 +192,4 @@ class IOmeterClient:
         return self
 
     async def __aexit__(self, *_exc_info: object) -> None:
-        await self.close()
\ No newline at end of file
+        await self.close()
