Skip to content

Commit

Permalink
docs: fix duplicate print function remove from init() method (#3034)
Browse files Browse the repository at this point in the history
In init() method there was duplicate print function like `print "GitHub: Initialized successfully"`.
  • Loading branch information
mmrraju authored Nov 21, 2022
1 parent 23f43af commit 870a84f
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ def __init__(self, currentTimeMillis):

def init(self, customScript, configurationAttributes):
print "GitHub. Initialization"
print "GitHub. Initialized successfully"

# read config from github_creds_file
github_creds_file = configurationAttributes.get("github_creds_file").getValue2()
Expand Down Expand Up @@ -252,4 +251,4 @@ def getUserInfo(self, accessToken):
return userinfoResponse
except Exception as e:
print e
return None
return None

0 comments on commit 870a84f

Please sign in to comment.