This website requires JavaScript.
Explore
Help
Register
Sign in
l.behm
/
bumblebee-status
Watch
1
Star
1
Fork
You've already forked bumblebee-status
0
Code
Issues
Pull requests
Projects
Releases
Packages
Wiki
Activity
a7a1da6b5d
bumblebee-status
/
runlint.sh
4 lines
72 B
Bash
Raw
Normal View
History
Unescape
Escape
[lint] Add tool to run pylint on all files pylint all *.py files and fix the errors reported so far.
2016-12-04 08:02:40 +01:00
#!/bin/sh
[core] Widget creation/update overhaul Until now, widgets were re-created during each iteration. For multiple, reasons, using static widget objects is much easier, so instead of creating new widgets continuously, modules now create the widgets during instantiation and get the list of widgets passed as parameter whenever an update occurs. During the update, they can still manipulate the widget list by removing and adding elements as needed. Advantages: * Less memory fragmentation (fewer (de)allocations) * Easier event management (widgets now have static IDs) * Easier module code (widget contents can simply be the result of a callback) see #23
2016-12-08 08:44:54 +01:00
find . -name
"*.py"
|
xargs pylint --disable
=
R0903,R0201,C0330
Reference in a new issue
Copy permalink