-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- refactorings & some clean up
- Loading branch information
Showing
12 changed files
with
303 additions
and
207 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/usr/bin/python | ||
# -*- mode: python; coding: utf-8; -*- | ||
# ============================================================================= | ||
# Copyright (C) 2017-2023 LB | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# ============================================================================= | ||
# noqa | ||
# kivy EventDispatcher passes keywords, that to not correspond to properties | ||
# to the base classes. Finally they will reach 'object'. With python3 (but not | ||
# python2) 'object' throws an exception 'takes no parameters' in that a | ||
# situation. We therefore underlay a base class (right outside), which | ||
# swallows up remaining keywords. Thus the keywords do not reach 'object' any | ||
# more. | ||
|
||
class LBase(object): | ||
def __init__(self, **kw): | ||
super(LBase, self).__init__() | ||
|
||
# ============================================================================= |
Oops, something went wrong.