Removed print statements
parent
f796a7cd95
commit
30908e8cb7
|
@ -14,9 +14,7 @@ from model.registration import Registration
|
|||
class CCRReader():
|
||||
def __init__(self, manager):
|
||||
self.git = Github(os.environ['ACCESS_TOKEN'])
|
||||
print(self.git)
|
||||
self.repo = self.git.get_repo(os.environ['CCR_REPO'])
|
||||
print(self.repo)
|
||||
self.ccrYears = {}
|
||||
self.dbManager = manager
|
||||
|
||||
|
@ -191,4 +189,4 @@ class CCRFile():
|
|||
except KeyError:
|
||||
pass
|
||||
print('No matching field found!')
|
||||
raise KeyError
|
||||
raise KeyError
|
||||
|
|
Loading…
Reference in New Issue