Skip to content

Commit

Permalink
added print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
grallewellyn committed Aug 22, 2024
1 parent b233030 commit b7172af
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions maap/maap.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,10 @@ def cancelJob(self, jobid):

def listJobs(self, username=None, page_size=None, offset=None):
print("graceal1 in listJobs")
print(username)
print(self.profile)
print(self.profile.account_info())
print(self.profile.account_info().keys())
if username==None and self.profile is not None and 'username' in self.profile.account_info().keys():
username = self.profile.account_info()['username']
print("graceal1 username in listJobs in maap-py is ")
Expand Down

0 comments on commit b7172af

Please sign in to comment.