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
Bad docs, the example has the instance of the class overides the module name
>>> from pydartdiags.obs_sequence import obs_sequence as obs_seq >>> obs_seq = obs_seq.obs_sequence('/Users/hkershaw/DART/Bugs/DuplicateObs/NCEP+ACARS.201303_6H.obs_seq2013030306') >>> obs_seq = obs_seq.obs_sequence('/Users/hkershaw/DART/Bugs/DuplicateObs/obs_seq.0Z.20160421') Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: 'obs_sequence' object has no attribute 'obs_sequence' >>> type(obs_seq) <class 'pydartdiags.obs_sequence.obs_sequence.obs_sequence'>
vs.
>>> from pydartdiags.obs_sequence import obs_sequence as obsq >>> obs_seq = obsq.obs_sequence('/Users/hkershaw/DART/Bugs/DuplicateObs/obs_seq.0Z.20160421') >>> obs_seq = obsq.obs_sequence('/Users/hkershaw/DART/Bugs/DuplicateObs/NCEP+ACARS.201303_6H.obs_seq2013030306') >>> type (obs_seq) <class 'pydartdiags.obs_sequence.obs_sequence.obs_sequence'> >>> type (obsq) <class 'module'>
readme.md
The text was updated successfully, but these errors were encountered:
4ba4943
doc-fix: rst docs fix for #17
b1eceed
No branches or pull requests
Bad docs, the example has the instance of the class overides the module name
vs.
readme.md
The text was updated successfully, but these errors were encountered: