diff --git a/cogs/info.py b/cogs/info.py index 6ecc6069..24ca9094 100644 --- a/cogs/info.py +++ b/cogs/info.py @@ -114,9 +114,8 @@ async def line_count(): "__pycache__"] for path, _, files in os.walk("."): - if ".local" in path: + if ".local" in path or ".ssh" in path or ".config" in path: continue - print(files) for name in files: file_dir = str(pathlib.PurePath(path, name)) # Ignoring the venv directory