Skip to content

Commit

Permalink
Update space.py: Make requested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
a-usr authored Feb 6, 2024
1 parent 99da711 commit f4ed274
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smassh/ui/widgets/typing/space.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def wrapper(space: "Space") -> RenderableType:

def blind_mode(func):
def wrapper(space: "Space", *args, **kwargs) -> Style:
if config_parser.get("blind_mode") in (True, "on"):
if config_parser.get("blind_mode") == "on":
return space.get_component_rich_style("--blind-match")

return func(space, *args, **kwargs)
Expand Down

0 comments on commit f4ed274

Please sign in to comment.