changed indentation from tabs to spaces
This commit is contained in:
parent
5c02a67ac7
commit
4bdba42eab
@ -14,4 +14,3 @@ def setup ():
|
||||
global app
|
||||
log.debug("Loading global app settings...")
|
||||
app = config_utils.load_config(os.path.join(paths.config_path(), MAINFILE), os.path.join(paths.app_path(), MAINSPEC))
|
||||
|
@ -24,4 +24,3 @@ class album(object):
|
||||
if i["title"] == item:
|
||||
return i["id"]
|
||||
return None
|
||||
|
||||
|
@ -15,4 +15,3 @@ def get(rootFolder):
|
||||
else:
|
||||
log.debug("The folder does not exist, using the English folder...")
|
||||
return "en"
|
||||
|
||||
|
@ -24,7 +24,7 @@ class attachPresenter(base.basePresenter):
|
||||
|
||||
def __init__(self, session, view, interactor, voice_messages=False):
|
||||
""" Constructor.
|
||||
@ session sessionmanager.session object: an object capable of calling all VK methods and accessing the session database.
|
||||
@ session sessionmanager.session object: an object capable of calling all VK methods and accessing the session database.
|
||||
@voice_messages bool: If True, will add a button for sending voice messages.
|
||||
"""
|
||||
super(attachPresenter, self).__init__(view=view, interactor=interactor, modulename="attach")
|
||||
|
@ -833,4 +833,3 @@ class Controller(base.basePresenter):
|
||||
self.window.remove_buffer(buff)
|
||||
self.buffers.remove(buffer)
|
||||
del self.session.groups
|
||||
|
||||
|
@ -168,4 +168,3 @@ class createTopicDialog(createCommentDialog):
|
||||
(wx.ACCEL_CTRL, ord('A'), selectId),])
|
||||
self.SetAcceleratorTable(self.accel_tbl)
|
||||
self.panel.SetSizer(self.mainBox)
|
||||
|
||||
|
@ -419,4 +419,3 @@ class displayPoll(widgetUtils.BaseDialog):
|
||||
sizer.Add(cancel, 0, wx.ALL, 5)
|
||||
self.panel.SetSizer(self.sizer)
|
||||
self.SetClientSize(self.sizer.CalcMin())
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user