Commit 16d3e832 authored by Michal Čihař's avatar Michal Čihař

Correct placement for comment

parent 2ae621a6
...@@ -17,14 +17,14 @@ ...@@ -17,14 +17,14 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
# #
from weblate import appsettings
from trans.util import load_class
''' '''
Import all the autofixes defined in settings. Note, unlike checks, using Import all the autofixes defined in settings. Note, unlike checks, using
a sortable data object so fixes are applied in desired order. a sortable data object so fixes are applied in desired order.
''' '''
from weblate import appsettings
from trans.util import load_class
autofixes = [] autofixes = []
for path in appsettings.AUTOFIX_LIST: for path in appsettings.AUTOFIX_LIST:
autofixes.append(load_class(path)()) autofixes.append(load_class(path)())
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment