krz/crumb

A local alternative to your browser's history.

clone: git clone https://gitbay.org/krz/crumb.git

159f549b3e07c0b86ce0a41cae7abf2ca38efd71

unsigned

author: github-actions <41898282+github-actions[bot]@users.noreply.github.com> · 2025-06-04T18:33:45Z

Commit from GitHub Actions (Ruff)
 search.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/search.py b/search.py
index ad81184..403a5fa 100644
--- a/search.py
+++ b/search.py
@@ -3,6 +3,7 @@ import sys
 
 LOG_PATH = os.path.expanduser("~/.crumb/history.org")
 
+
 def search_log(query):
     """
     Search for a given query string within the crumb history log file and print matching entries.
@@ -29,6 +30,7 @@ def search_log(query):
     if found == 0:
         print("No matches found.")
 
+
 if __name__ == "__main__":
     """
     Entry point for the script. Parses command line arguments and calls the search function.