The option save = None while calling the record section plotting tool does not seem to be recognized leading to the following error message -
TypeError: stat: path should be string, bytes, os.PathLike or integer, not NoneType
The documentation does suggest that save = None is a valid argument. While save = '' serves the purpose, to be consistent with the way other arguments are set save = None is desired.
The option
save = None
while calling the record section plotting tool does not seem to be recognized leading to the following error message -TypeError: stat: path should be string, bytes, os.PathLike or integer, not NoneType
The documentation does suggest that
save = None
is a valid argument. Whilesave = ''
serves the purpose, to be consistent with the way other arguments are setsave = None
is desired.