TheR1D / shell_gpt

A command-line productivity tool powered by AI large language models like GPT-4, will help you accomplish your tasks faster and more efficiently.
MIT License
9.41k stars 741 forks source link

Replace unittest.mock assertion method in removed Python 3.12 #554

Open carlsmedstad opened 5 months ago

carlsmedstad commented 5 months ago

Replace unittest.mock assertion method in removed Python 3.12

The unittest.mock method called_once_with is no longer present in Python 3.12, assert_called_once_with should be used instead.

Also, make the scripts in scripts/ executable.

Resolves #553.