From 11920359beb856b2e93a2ccf059c50a6384a4302 Mon Sep 17 00:00:00 2001 From: Pradyun Gedam Date: Wed, 14 Feb 2024 21:57:56 +0000 Subject: [PATCH] Pacify linters --- src/furo/_demo_module.py | 10 ++++++---- src/furo/assets/styles/variables/_colors.scss | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/furo/_demo_module.py b/src/furo/_demo_module.py index dc4a3012..283fd9ab 100644 --- a/src/furo/_demo_module.py +++ b/src/furo/_demo_module.py @@ -54,14 +54,16 @@ def get_random_float(self) -> float: def annoying_function_name_length_aa(one: int, two: int) -> str: - """A function that adds two numbers as strings. + """Add two numbers as strings. - Because I needed a placeholder function.""" + Because I needed a placeholder function. + """ return str(one) + str(two) def annoying_function_name_length_aaa(one: int, two: int) -> str: - """A function that adds two numbers as strings. + """Add two numbers as strings. - Because I needed a placeholder function.""" + Because I needed a placeholder function. + """ return str(one) + str(two) diff --git a/src/furo/assets/styles/variables/_colors.scss b/src/furo/assets/styles/variables/_colors.scss index 06ef6b90..e45d6c41 100644 --- a/src/furo/assets/styles/variables/_colors.scss +++ b/src/furo/assets/styles/variables/_colors.scss @@ -12,7 +12,7 @@ // Base Colors --color-foreground-primary: black; // for main text and headings --color-foreground-secondary: #5a5c63; // for secondary text - --color-foreground-muted: #6B6F76; // for muted text + --color-foreground-muted: #6b6f76; // for muted text --color-foreground-border: #878787; // for content borders --color-background-primary: white; // for content