Skip to content

Commit

Permalink
Omitting period.
Browse files Browse the repository at this point in the history
  • Loading branch information
michielkauwatjoe committed Jul 11, 2019
1 parent b9c4579 commit 776ebc2
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Lib/pagebot/bezierpaths/bezierpath.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import CoreText
from fontTools.pens.basePen import BasePen

from .beziercontour import BezierContour
from beziercontour import BezierContour
from pagebot.contexts.base.context import BaseContext
from pagebot.errors import PageBotError

Expand Down
2 changes: 1 addition & 1 deletion Lib/pagebot/contexts/solid/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# https://github.com/SolidCode/SolidPython/tree/master/solid
# https://github.com/felipesanches/SolidPinball
#
from basebuilder import BaseBuilder
from pagebot.context.base.builder import BaseBuilder

class SolidBuilder(BaseBuilder):
pass
2 changes: 1 addition & 1 deletion Lib/pagebot/contexts/xml/htmlbuilder.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import codecs
import sass

from .xmlbuilder import XmlBuilder
from xmlbuilder import XmlBuilder
from pagebot.toolbox.dating import now
from pagebot.toolbox.color import noColor
from pagebot.toolbox.transformer import (dataAttribute2Html5Attribute,
Expand Down
4 changes: 2 additions & 2 deletions Lib/pagebot/contexts/xml/htmlcontext.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
#
# htmlcontext.py
#
from .htmlbuilder import HtmlBuilder
from .htmlstring import HtmlString
from htmlbuilder import HtmlBuilder
from htmlstring import HtmlString
from pagebot.contexts.base.context import BaseContext
from pagebot.toolbox.color import noColor

Expand Down
2 changes: 1 addition & 1 deletion Lib/pagebot/contexts/xml/sitebuilder.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#
# sitebuilder.py
#
from .htmlbuilder import HtmlBuilder
from htmlbuilder import HtmlBuilder

class SiteBuilder(HtmlBuilder):
"""Generic output builder container, used of collecting html, css, js,
Expand Down
4 changes: 2 additions & 2 deletions Lib/pagebot/contexts/xml/svgcontext.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
#

import shutil
from .svgbuilder import svgBuilder
from .htmlstring import HtmlString
from svgbuilder import svgBuilder
from htmlstring import HtmlString
from pagebot.toolbox.transformer import uniqueID
from pagebot.contexts.base.context import BaseContext
from pagebot.constants import DEFAULT_FONT_SIZE, DEFAULT_LANGUAGE
Expand Down
2 changes: 1 addition & 1 deletion pylint.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
export WONT_FIX=invalid-name,bad-indentation,trailing-newlines,wrong-import-position,fixme
export WONT_FIX=invalid-name,bad-indentatin,trailing-newlines,wrong-import-position,fixme
export CATCHALL_MAY_FIX_LATER=line-too-long,trailing-whitespace,duplicate-code,bad-whitespace,no-name-in-module,import-error,multiple-imports,bad-continuation,no-value-for-parameter,too-many-arguments,too-many-locals,unused-argument,pointless-string-statement,using-constant-test,invalid-encoded-data,too-many-instance-attributes,too-few-public-methods,attribute-defined-outside-init,protected-access,wrong-import-order,missing-final-newline,mixed-indentation,unused-variable,no-member,too-many-function-args,unexpected-keyword-arg,bare-except,no-self-use,no-method-argument,function-redefined,too-many-public-methods,anomalous-backslash-in-string,redefined-builtin,too-many-branches,relative-import,arguments-differ,syntax-error,reimported,used-before-assignment,too-many-boolean-expressions,too-many-statements,no-self-argument,unnecessary-pass,keyword-arg-before-vararg,not-a-mapping,multiple-statements,inconsistent-return-statements,pointless-statement,ungrouped-imports,unnecessary-semicolon,no-else-return,old-style-class,too-many-nested-blocks,unsubscriptable-object,too-many-lines,unidiomatic-typecheck,bare-except,simplifiable-if-statement,too-many-return-statements,blacklisted-name,exec-used,not-callable,eval-used,empty-docstring,super-init-not-called,singleton-comparison,unreachable,expression-not-assigned,consider-using-enumerate,unbalanced-tuple-unpacking,global-statement,duplicate-key,anomalous-unicode-escape-in-string,no-init,redefined-argument-from-local,broad-except,missing-docstring,superfluous-parens,wildcard-import,unused-wildcard-import,redefined-outer-name,consider-iterating-dictionary
export PYLINT="pylint --disable=$WONT_FIX,$CATCHALL_MAY_FIX_LATER"
$PYLINT Lib/pagebot

0 comments on commit 776ebc2

Please sign in to comment.