Updates to uiscripter/actions/runaction - minor clean ups
AbandonedPublic

Authored by brendanbd on Dec 28 2017, 10:59 AM.

Details

Reviewers
None
Group Reviewers
Krita
Maniphest Tasks
T7627: Generic Scripter UI improvements task
Summary

Remove unused imports in plugins/extensions/pykrita/plugin/plugins/scripter/ui_scripter/actions/runaction/runaction.py

Also, code is compiled but not executed. Either delete compile or change to exec the code, rather than the script

code = compile(script, '<string>', 'exec')
  • exec(script, {})

+ exec(code, {})

Diff Detail

Repository
R37 Krita
Lint
Lint Skipped
Unit
Unit Tests Skipped
brendanbd created this revision.Dec 28 2017, 10:59 AM
Restricted Application added a subscriber: woltherav. ยท View Herald TranscriptDec 28 2017, 10:59 AM