Skip to content

Commit 2894172

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 36d7230 commit 2894172

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

funnel/assets/sass/mui/_custom.scss

+4-3
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,10 @@ $mui-body-bg-color: $mui-bg-color-accent !default;
3636
$mui-btn-danger-bg-color: $mui-text-danger;
3737

3838
$mui-base-font-color: $mui-text-dark !default;
39-
$mui-base-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
40-
Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif, 'Noto Sans Math',
41-
'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
39+
$mui-base-font-family:
40+
-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
41+
'Helvetica Neue', Arial, sans-serif, 'Noto Sans Math', 'Apple Color Emoji',
42+
'Segoe UI Emoji', 'Segoe UI Symbol';
4243
$mui-base-font-size: 14px !default;
4344
$mui-base-font-size-desktop: 16px !default;
4445
$mui-base-font-weight: 400 !default;

funnel/static/css/app.css

+4-3
Original file line numberDiff line numberDiff line change
@@ -1690,9 +1690,10 @@ html {
16901690
}
16911691

16921692
body {
1693-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
1694-
Cantarell, 'Helvetica Neue', Arial, sans-serif, 'Noto Sans Math',
1695-
'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
1693+
font-family:
1694+
-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
1695+
'Helvetica Neue', Arial, sans-serif, 'Noto Sans Math', 'Apple Color Emoji',
1696+
'Segoe UI Emoji', 'Segoe UI Symbol';
16961697
font-size: 14px;
16971698
font-weight: 400;
16981699
line-height: 1.5;

tests/conftest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ def backup_and_apply_config(
492492
) -> None:
493493
if key in saved_config:
494494
pytest.fail(f"Duplicate mock for {app_name}.config[{key!r}]")
495-
if key in app_fixture.config: # noqa: SIM401
495+
if key in app_fixture.config:
496496
saved_config[key] = app_fixture.config[key]
497497
else:
498498
saved_config[key] = ... # Sentinel value

0 commit comments

Comments
 (0)