From 59d486c89c99c2fc87667807104881d7df0df3cd Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 10 May 2023 10:50:36 -0700 Subject: [PATCH] Refactor Commands class methods to follow naming convention. --- aider/getinput.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aider/getinput.py b/aider/getinput.py index b7f58354f..3b61dc78c 100644 --- a/aider/getinput.py +++ b/aider/getinput.py @@ -13,9 +13,9 @@ import time import random class Commands: - def help(self): + def cmd_help(self): print('help') - def ls(self): + def cmd_ls(self): print('ls')