Skip to content

Commit

Permalink
blacked
Browse files Browse the repository at this point in the history
  • Loading branch information
trollfot committed Feb 12, 2024
1 parent 251ed49 commit 1fadd9d
Show file tree
Hide file tree
Showing 19 changed files with 18 additions and 1 deletion.
1 change: 1 addition & 0 deletions deform/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Deform."""

# flake8: noqa
from . import exception # API
from . import form # API
Expand Down
1 change: 0 additions & 1 deletion deform/decorator.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@


class reify(object):

"""Put the result of a method which uses this (non-data)
descriptor decorator in the instance dict after the first call,
effectively replacing the decorator with an instance variable."""
Expand Down
1 change: 1 addition & 0 deletions deform/field.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Field."""

# Standard Library
import itertools
import re
Expand Down
1 change: 1 addition & 0 deletions deform/form.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Form."""

# Standard Library
import re

Expand Down
1 change: 1 addition & 0 deletions deform/i18n.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""I18n."""

from translationstring import TranslationStringFactory


Expand Down
1 change: 1 addition & 0 deletions deform/renderer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Renderer."""

from pkg_resources import resource_filename

# Deform
Expand Down
1 change: 1 addition & 0 deletions deform/schema.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Schema."""

# Pyramid
import colander

Expand Down
1 change: 1 addition & 0 deletions deform/template.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Template."""

# Standard Library
import os.path

Expand Down
1 change: 1 addition & 0 deletions deform/tests/test_api.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""API tests."""

# Standard Library
import unittest

Expand Down
1 change: 1 addition & 0 deletions deform/tests/test_decorator.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Decorator tests."""

# Standard Library
import unittest

Expand Down
1 change: 1 addition & 0 deletions deform/tests/test_exception.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Exception tests."""

# Standard Library
import unittest

Expand Down
1 change: 1 addition & 0 deletions deform/tests/test_field.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Field tests."""

# Standard Library
import unittest

Expand Down
1 change: 1 addition & 0 deletions deform/tests/test_form.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Form tests."""

# Standard Library
import unittest

Expand Down
1 change: 1 addition & 0 deletions deform/tests/test_functional.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Functional tests."""

# Standard Library
import datetime
import unittest
Expand Down
1 change: 1 addition & 0 deletions deform/tests/test_interfaces.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Interfaces tests."""

# Standard Library
import unittest

Expand Down
1 change: 1 addition & 0 deletions deform/tests/test_schema.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Schema tests."""

# Standard Library
import unittest

Expand Down
1 change: 1 addition & 0 deletions deform/tests/test_template.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Template tests."""

# Standard Library
import unittest

Expand Down
1 change: 1 addition & 0 deletions deform/tests/test_widget.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Widget tests."""

# Standard Library
import unittest
from urllib.parse import unquote
Expand Down
1 change: 1 addition & 0 deletions deform/widget.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Widget."""

# Standard Library
import csv
from io import StringIO
Expand Down

0 comments on commit 1fadd9d

Please sign in to comment.