Skip to content

Commit a898b44

Browse files
committed
Actually remove the binary argument from set_type_codec signature.
Compatibility support was removed in 0.13.0.
1 parent 05dce25 commit a898b44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

asyncpg/connection.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -793,7 +793,7 @@ async def _copy_in_records(self, copy_stmt, records, intro_stmt, timeout):
793793

794794
async def set_type_codec(self, typename, *,
795795
schema='public', encoder, decoder,
796-
binary=None, format='text'):
796+
format='text'):
797797
"""Set an encoder/decoder pair for the specified data type.
798798
799799
:param typename:

0 commit comments

Comments
 (0)