We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In pydicom 3.0.1 DicomBytesIO's and DicomFileLike read function changed an only accepts one argument. The current implementation https://github.com/ImagingDataCommons/highdicom/blob/master/src/highdicom/io.py#L188 seems to be compatible with the 2.4.4 based DicomIO.
DicomBytesIO
DicomFileLike
read
DicomIO
The following error is raised:
first_two_bytes = fp.read(2, True) E TypeError: read expected at most 1 argument, got 2
The text was updated successfully, but these errors were encountered:
Thanks for reporting this issue @denesd, hopefully this should be a simple fix. I'll take a look in the next few days
Sorry, something went wrong.
Hi @denesd, could you please test whether #314 fixes your issue?
Hi @CPBridge , I've tested the fix and it seems to be working as expected 💯
Closed by #314
No branches or pull requests
In pydicom 3.0.1
DicomBytesIO
's andDicomFileLike
read
function changed an only accepts one argument. The current implementation https://github.com/ImagingDataCommons/highdicom/blob/master/src/highdicom/io.py#L188 seems to be compatible with the 2.4.4 basedDicomIO
.The following error is raised:
The text was updated successfully, but these errors were encountered: