Skip to content

Commit

Permalink
modified print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
grallewellyn committed Aug 22, 2024
1 parent 0830b32 commit b233030
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion maap/maap.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
class MAAP(object):

def __init__(self, maap_host=os.getenv('MAAP_API_HOST', 'api.maap-project.org')):
print("graceal1 maap host in init is")
print("graceal1 maap host in init is TEST")
print(maap_host)
self.config = MaapConfig(maap_host=maap_host)

Expand Down Expand Up @@ -259,6 +259,7 @@ def cancelJob(self, jobid):
return job.cancel_job()

def listJobs(self, username=None, page_size=None, offset=None):
print("graceal1 in listJobs")
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 b233030

Please sign in to comment.