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
create_dashboards
DashboardMetadata.as_lakeview
It looks like the entire create_dashboard method from here should be converted to a method on DashboardMetadata:
DashboardMetadata
def as_lakeview(self) -> Dashboard: self.validate() datasets = self.get_datasets() # make get_datasets private layouts = self.get_layouts() # make get_layouts private page = Page( name=dashboard_metadata.display_name, display_name=dashboard_metadata.display_name, layout=layouts, ) return Dashboard(datasets=datasets, pages=[page])
Originally posted by @nfx in #210 (comment)
The text was updated successfully, but these errors were encountered:
create_dashboard
Move create_dashboard mehod to DashboardMetadata (#216)
f86d823
Resolves #215
Successfully merging a pull request may close this issue.
It looks like the entire create_dashboard method from here should be converted to a method on
DashboardMetadata
:Originally posted by @nfx in #210 (comment)
The text was updated successfully, but these errors were encountered: