diff --git a/src/print_todos.py b/src/print_todos.py index 7e8213c..94e66d2 100644 --- a/src/print_todos.py +++ b/src/print_todos.py @@ -25,7 +25,7 @@ def get_bullet(indentation_level: int) -> str: "•", "◦", "▪", - # "▫", + "▫", ] return symbols[indentation_level // INDENT % len(symbols)]