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
Describe the bug Diff status always returns CLEAN inside CM
Severity
Select an option:
To Reproduce
from hangar import Repository import numpy as np repo = Repository('.') repo.init(user_name='me', user_email='[email protected]', remove_old=True) co = repo.checkout(write=True) co.add_ndarray_column('x', prototype=np.array([1])) co.commit('added columns') co.close() co = repo.checkout(write=True) x = co.columns['x'] with x: for i in range(10): x[i] = np.array([i]) print(co.diff.status()) # this should return DIRTY but returns CLEAN print(co.diff.status()) # this returns DIRTY as expected co.commit('adding file')
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Diff status always returns CLEAN inside CM
Severity
Select an option:
To Reproduce
The text was updated successfully, but these errors were encountered: