Skip to content

Commit 26f373e

Browse files
committed
chore: dependency upgrade
1 parent ccfe7a6 commit 26f373e

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

openfga_sdk/client/openfga_client.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,8 @@ async def _write_batches(self, tuple_keys: List[ClientTuple], transaction: Write
313313
for write_batch in write_batches:
314314
request = [self._write_single_batch(i, options, is_write) for i in write_batch]
315315
response = await asyncio.gather(*request)
316-
flatten_list = [item for sublist in response for item in sublist]
316+
flatten_list = [
317+
item for batch_single_response in response for item in batch_single_response]
317318
batch_write_responses.extend(flatten_list)
318319

319320
return batch_write_responses

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
six >= 1.16
2-
setuptools >= 66.0.0
2+
setuptools >= 67.7.2
33
python-dateutil >= 2.8.2
4-
urllib3 >= 1.26.14
5-
aiohttp >= 3.8.3
4+
urllib3 >= 1.26.15
5+
aiohttp >= 3.8.4

0 commit comments

Comments
 (0)