Refactor Commands class methods to follow naming convention.

This commit is contained in:
Paul Gauthier 2023-05-10 10:50:36 -07:00
parent 300a8b8fce
commit 59d486c89c

View file

@ -13,9 +13,9 @@ import time
import random import random
class Commands: class Commands:
def help(self): def cmd_help(self):
print('help') print('help')
def ls(self): def cmd_ls(self):
print('ls') print('ls')