Skip to content

Commit 0e6bff5

Browse files
committed
Fix format
1 parent b532a87 commit 0e6bff5

7 files changed

Lines changed: 2 additions & 8 deletions

File tree

deform/i18n.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@
22

33
from translationstring import TranslationStringFactory
44

5-
65
_ = TranslationStringFactory("deform")

deform/schema.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
from . import widget
1010

11-
1211
default_widget_makers = {
1312
colander.Mapping: widget.MappingWidget,
1413
colander.Sequence: widget.SequenceWidget,

deform/template.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
"""Template."""
22

33
# Standard Library
4-
import os.path
54
import importlib.resources as resources
5+
import os.path
66

77
from chameleon.zpt.loader import TemplateLoader
88
from translationstring import ChameleonTranslate
99

1010
from .exception import TemplateError
1111

12-
1312
BOOLEAN_HTML_ATTRS = frozenset(
1413
[
1514
# List of Boolean attributes in HTML that should be rendered in

deform/widget.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
from .i18n import _
2323
from .utils import text_
2424

25-
2625
sequence_types = (
2726
list,
2827
tuple,

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ include_trailing_comma = true
3737
known_first_party = "deform"
3838
known_pyramid = "colander,jinja2,plaster,pyramid,pyramid_layout,venusian,zope,transaction,pyramid_chameleon,Chameleon"
3939
line_length = 79
40-
lines_after_imports = 2
4140
multi_line_output = 3
4241
no_lines_before = "THIRDPARTY"
4342
profile = "black"

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ def readfile(name):
8282
long_description=README + "\n\n" + CHANGES,
8383
classifiers=[
8484
"Intended Audience :: Developers",
85-
"License :: Repoze Public License",
8685
"Programming Language :: Python",
8786
"Programming Language :: Python :: 3",
8887
"Programming Language :: Python :: 3.10",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ commands =
2828
black --check --diff deform setup.py
2929
# XXX -r reports now warnings too so we fail
3030
python setup.py check -s -m
31-
rstcheck README.rst CHANGES.txt
31+
rstcheck README.rst CHANGES.txt
3232
check-manifest
3333
extras =
3434
lint

0 commit comments

Comments
 (0)