Skip to content

Commit 1192035

Browse files
committed
Pacify linters
1 parent e44ef0f commit 1192035

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

src/furo/_demo_module.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,16 @@ def get_random_float(self) -> float:
5454

5555

5656
def annoying_function_name_length_aa(one: int, two: int) -> str:
57-
"""A function that adds two numbers as strings.
57+
"""Add two numbers as strings.
5858
59-
Because I needed a placeholder function."""
59+
Because I needed a placeholder function.
60+
"""
6061
return str(one) + str(two)
6162

6263

6364
def annoying_function_name_length_aaa(one: int, two: int) -> str:
64-
"""A function that adds two numbers as strings.
65+
"""Add two numbers as strings.
6566
66-
Because I needed a placeholder function."""
67+
Because I needed a placeholder function.
68+
"""
6769
return str(one) + str(two)

src/furo/assets/styles/variables/_colors.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// Base Colors
1313
--color-foreground-primary: black; // for main text and headings
1414
--color-foreground-secondary: #5a5c63; // for secondary text
15-
--color-foreground-muted: #6B6F76; // for muted text
15+
--color-foreground-muted: #6b6f76; // for muted text
1616
--color-foreground-border: #878787; // for content borders
1717

1818
--color-background-primary: white; // for content

0 commit comments

Comments
 (0)