Closed chsafouane closed 3 years ago
urlread has a parameter decode whose default value is set to True. As such, there is no need to call decode()on the result of urlread. The current version returns the following error: AttributeError: 'str' object has no attribute 'decode'
True
decode()
Redundant, see https://github.com/fastai/course20/pull/51#issue-578292422
urlread has a parameter decode whose default value is set to
True
. As such, there is no need to calldecode()
on the result of urlread. The current version returns the following error: AttributeError: 'str' object has no attribute 'decode'