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
Currently the class takes a Path object instead of a string
import pathlib as path from NielsenDSRS import NielsenRetail path_file = path.Path('path_string') NR = NielsenRetail(path_file)
The class should be direct and just 2 lines:
from NielsenDSRS import NielsenRetail NR = NielsenRetail(path_string) # path being a string
The text was updated successfully, but these errors were encountered:
Instead of initiating the class with 4 lines, it should be only 2 lines as shown
Sorry, something went wrong.
Update module.py
b91a248
Maybe this will help with #1
No branches or pull requests
Currently the class takes a Path object instead of a string
The class should be direct and just 2 lines:
The text was updated successfully, but these errors were encountered: