Documentation is throwing me off a little bit, can somebody please help in how we can perform the operation similar to the command: git stash list
Tried the below but it didn't work for list, but worked for drop and save.
from git import Repo
repo = Repo("Some Git Repo Path")
print(repo.git.stash("list"))