Add import for guess_lexer function

This commit is contained in:
Hayden Johnson 2025-03-16 12:27:00 -07:00
parent b2d66c2937
commit 24c6625f30

View file

@ -1,4 +1,4 @@
#!./.venv/bin/python
#!/bin/python
# Chat with an intelligent assistant in your terminal
from ollama import Client
import re
@ -6,7 +6,7 @@ import pyperclip
import sys
import argparse
import pygments
from pygments.lexers import get_lexer_by_name
from pygments.lexers import get_lexer_by_name, guess_lexer
from pygments.formatters import TerminalFormatter
import os