-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modifications to callable_from_qua (#178)
* move callable_from_qua away from addons * rename folders * Rename run_local -> callable_from_qua * add patches to qua classes * add to import * Added patches * patches and transformed to ProgramAddon * add creation of QuaCallableEventManager * rename everything to qua_callable * Add callables attr * add enable_callable_from_qua * fix: classmethods * fixed bugs related to class * update tests * Switch order in execute and addons execution * fix bug * qua_patches decoupled * work in progress * remove "enable_callable" * get program from scope --------- Co-authored-by: TheoQM <[email protected]>
- Loading branch information
1 parent
be6cf48
commit cc2ef67
Showing
12 changed files
with
269 additions
and
120 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
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
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 |
---|---|---|
|
@@ -10,4 +10,5 @@ | |
"multi_user", | ||
"units", | ||
"external_frameworks", | ||
"callable_from_qua", | ||
] |
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,7 @@ | ||
from ._callable_from_qua import * | ||
from ._qua_patches import * | ||
|
||
__all__ = [ | ||
*_callable_from_qua.__all__, | ||
*_qua_patches.__all__, | ||
] |
Oops, something went wrong.