Open btleyden opened 8 months ago
Goal Replace 'rU' with 'r' mode when open is called.
'U' mode has been removed as of Python 3.11, and so open(fp, mode='rU') now throws a ValueError. This can be fixed by just using 'r' mode.
open(fp, mode='rU')
Goal Replace 'rU' with 'r' mode when open is called.
'U' mode has been removed as of Python 3.11, and so
open(fp, mode='rU')
now throws a ValueError. This can be fixed by just using 'r' mode.