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
When using a custom StoreProtocol, the store method is never run, only an instance of the StoreProtocol is created (in line 324)
StoreProtocol
f3dasm/src/f3dasm/_src/experimentdata/_io.py
Lines 321 to 339 in 8b8b744
Don't return, but let storage.store() be executed whenever a StoreProtocol is instantiated.
storage.store()
The text was updated successfully, but these errors were encountered:
37f123d
No branches or pull requests
The problem
When using a custom
StoreProtocol
, the store method is never run, only an instance of theStoreProtocol
is created (in line 324)f3dasm/src/f3dasm/_src/experimentdata/_io.py
Lines 321 to 339 in 8b8b744
Solution
Don't return, but let
storage.store()
be executed whenever aStoreProtocol
is instantiated.The text was updated successfully, but these errors were encountered: