Skip to content

Commit

Permalink
Lint and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
antonymilne committed Dec 19, 2023
1 parent 4def8ed commit cfc3cf7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,15 @@ Uncomment the section that is right (remove the HTML comment wrapper).
- A bullet item for the Removed category with a link to the relevant PR at the end of your entry, e.g. Enable feature XXX ([#1](https://github.com/mckinsey/vizro/pull/1))
-->
<!--

### Added

- A bullet item for the Added category with a link to the relevant PR at the end of your entry, e.g. Enable feature XXX ([#1](https://github.com/mckinsey/vizro/pull/1))
- When set, the dashboard title appears alongside the individual page title as the text labelling a browser tab. ([#228](https://github.com/mckinsey/vizro/pull/228))

-->
<!--
### Changed
- A bullet item for the Changed category with a link to the relevant PR at the end of your entry, e.g. Enable feature XXX ([#1](https://github.com/mckinsey/vizro/pull/1))
- A bullet item for the Changed category with a link to the relevant PR at the end of your entry, e.g. Enable feature XXX ([#228](https://github.com/mckinsey/vizro/pull/228))
-->
<!--
Expand Down
8 changes: 2 additions & 6 deletions vizro-core/tests/unit/vizro/models/test_dashboard.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
import functools
import json
from collections import OrderedDict
from functools import partial

import dash
import dash_bootstrap_components as dbc
import plotly
import pytest
from dash import html

from asserts import assert_component_equal
from dash import html

try:
from pydantic.v1 import ValidationError
Expand Down Expand Up @@ -116,7 +112,7 @@ def test_make_page_404_layout(self, vizro_app):
# vizro_app fixture is needed to avoid mocking out get_relative_path.
expected = html.Div(
[
html.Img(src=f"/vizro/images/errors/error_404.svg"),
html.Img(src="/vizro/images/errors/error_404.svg"),
html.Div(
[
html.Div(
Expand Down

0 comments on commit cfc3cf7

Please sign in to comment.