-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
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
Watch context file for changes saved separately #304
Conversation
try: | ||
column_index = self.damnit_model.find_column(name, by_title=True) | ||
except KeyError: | ||
log.error("Could not find column %r to set visibility", name) | ||
return |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This catch probably isn't needed any more with the fix in damnit_ctx.py, but I figured it was easier to leave it in.
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #304 +/- ##
==========================================
+ Coverage 74.39% 75.32% +0.93%
==========================================
Files 32 32
Lines 4858 5026 +168
==========================================
+ Hits 3614 3786 +172
+ Misses 1244 1240 -4 ☔ View full report in Codecov by Sentry. |
bcf69f7
to
017f173
Compare
For me LGTM! :) |
Thanks! I'll give this another quick try manually, as I've made some changes since I last did, and then I'll merge it. |
Tested interactively. This also fixes a bug where new columns would occasionally show up without a column heading, by ensuring variables always have a title.
cc @tmichela