Skip to content

Commit

Permalink
Fixed mixing of tabs and spaces.
Browse files Browse the repository at this point in the history
  • Loading branch information
Toben Archer authored and Toben Archer committed Oct 4, 2017
1 parent fdd824b commit d14c690
Show file tree
Hide file tree
Showing 8 changed files with 254 additions and 256 deletions.
2 changes: 1 addition & 1 deletion O365/attachment.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def __init__(self,json=None,path=None,verify=True):
else:
self.json = {'@odata.type':'#Microsoft.OutlookServices.FileAttachment'}

self.verify = verify
self.verify = verify

def isType(self,typeString):
'''Test to if the attachment is the same type as you are seeking. Do not include a period.'''
Expand Down
2 changes: 1 addition & 1 deletion O365/cal.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def __init__(self, json=None, auth=None, verify=True):
self.calendarId = json['Id']
self.name = json['Name']

self.verify = verify
self.verify = verify

def getName(self):
'''Get the calendar's Name.'''
Expand Down
6 changes: 2 additions & 4 deletions O365/contact.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ def __init__(self, json=None, auth=None, verify=True):
else:
log.debug('there was no json, putting in some dumby info.')
self.json = {'DisplayName':'Jebediah Kerman'}
self.verify = verify

self.verify = verify

def delete(self):
'''delete's a contact. cause who needs that guy anyway?'''
Expand Down Expand Up @@ -161,6 +161,4 @@ def addEmail(self,address,name=None):
'''takes a plain string email, and optionally name, and appends it to list.'''
ins = {'Address':address,'Name':None}



#To the King!
2 changes: 1 addition & 1 deletion O365/event.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def __init__(self,json=None,auth=None,cal=None,verify=True):
else:
self.json = {}

self.verify = verify
self.verify = verify


def create(self,calendar=None):
Expand Down
2 changes: 1 addition & 1 deletion O365/group.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def __init__(self, auth, folderName=None,verify=True):
self.contacts = []
self.folderName = folderName

self.verify = verify
self.verify = verify


def getContacts(self):
Expand Down
2 changes: 1 addition & 1 deletion O365/inbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def __init__(self, auth, getNow=True, verify=True):
self.filters = 'IsRead eq false'
self.getMessages()

self.verify = verify
self.verify = verify


def getMessages(self, number = 10):
Expand Down
Loading

0 comments on commit d14c690

Please sign in to comment.