Skip to content

Commit

Permalink
Pacify linters
Browse files Browse the repository at this point in the history
  • Loading branch information
pradyunsg committed Feb 14, 2024
1 parent e44ef0f commit 1192035
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions src/furo/_demo_module.py
Expand Up @@ -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)
2 changes: 1 addition & 1 deletion src/furo/assets/styles/variables/_colors.scss
Expand Up @@ -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
Expand Down

0 comments on commit 1192035

Please sign in to comment.