-
Notifications
You must be signed in to change notification settings - Fork 14.1k
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
Configure Visualizations #365
Conversation
|
|
# Enable different visualizations: True or False (refer viz.py) | ||
# --------------------------------------------------- | ||
|
||
VIZ_TYPES = { |
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.
I'd rather go with a blacklist so that we don't have to touch this everytime we add a new viz, probably should just be a tuple of viz_types
@mistercrunch sounds good. Fixed and tested. |
|
|
@@ -14,7 +14,6 @@ | |||
import uuid | |||
from collections import OrderedDict, defaultdict | |||
from datetime import datetime, timedelta | |||
|
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.
I'll merge anyways, but the idea for that blank line is to differentiate between standard lib imports and external ones. It matters most in large modules with lots of imports...
Thanks for the PR! |
* docs: update storybook * fix: import * fix: import * fix: import
* docs: update storybook * fix: import * fix: import * fix: import
…he#365) Bumps [@airbnb/config-eslint](https://github.com/airbnb/nimbus) from 2.5.1 to 2.5.2. - [Release notes](https://github.com/airbnb/nimbus/releases) - [Changelog](https://github.com/airbnb/nimbus/blob/master/CHANGELOG.md) - [Commits](https://github.com/airbnb/nimbus/compare/@airbnb/config-eslint@2.5.1...@airbnb/config-eslint@2.5.2) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* docs: update storybook * fix: import * fix: import * fix: import
…he#365) Bumps [@airbnb/config-eslint](https://github.com/airbnb/nimbus) from 2.5.1 to 2.5.2. - [Release notes](https://github.com/airbnb/nimbus/releases) - [Changelog](https://github.com/airbnb/nimbus/blob/master/CHANGELOG.md) - [Commits](https://github.com/airbnb/nimbus/compare/@airbnb/config-eslint@2.5.1...@airbnb/config-eslint@2.5.2) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* docs: update storybook * fix: import * fix: import * fix: import
…he#365) Bumps [@airbnb/config-eslint](https://github.com/airbnb/nimbus) from 2.5.1 to 2.5.2. - [Release notes](https://github.com/airbnb/nimbus/releases) - [Changelog](https://github.com/airbnb/nimbus/blob/master/CHANGELOG.md) - [Commits](https://github.com/airbnb/nimbus/compare/@airbnb/config-eslint@2.5.1...@airbnb/config-eslint@2.5.2) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* docs: update storybook * fix: import * fix: import * fix: import
…he#365) Bumps [@airbnb/config-eslint](https://github.com/airbnb/nimbus) from 2.5.1 to 2.5.2. - [Release notes](https://github.com/airbnb/nimbus/releases) - [Changelog](https://github.com/airbnb/nimbus/blob/master/CHANGELOG.md) - [Commits](https://github.com/airbnb/nimbus/compare/@airbnb/config-eslint@2.5.1...@airbnb/config-eslint@2.5.2) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Ideally we want to be able to enable/disable visualizations because rarely all them are applicable to a given data distribution. Users can now see only selected viz based on the configuration done by admin in config.py