Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repos:
hooks:
- id: isort
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.11.0
rev: 26.1.0
hooks:
- id: black
- repo: https://github.com/collective/zpretty
Expand Down Expand Up @@ -62,7 +62,7 @@ repos:
hooks:
- id: check-manifest
- repo: https://github.com/regebro/pyroma
rev: "5.0"
rev: "5.0.1"
hooks:
- id: pyroma
- repo: https://github.com/mgedmin/check-python-versions
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import os


version = "6.0.0a2.dev0"


Expand Down
1 change: 0 additions & 1 deletion src/collective/collectionfilter/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from zope.i18nmessageid import MessageFactory


_ = MessageFactory("collective.collectionfilter")
1 change: 0 additions & 1 deletion src/collective/collectionfilter/baseviews.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@

import json


try:
from collective.geolocationbehavior.interfaces import IGeoJSONProperties
from plone.formwidget.geolocation.vocabularies import _
Expand Down
1 change: 0 additions & 1 deletion src/collective/collectionfilter/filteritems.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@

import plone.api


try:
from plone.app.event.browser.event_listing import EventListing
except ImportError:
Expand Down
1 change: 0 additions & 1 deletion src/collective/collectionfilter/interfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
from zope.interface import Interface
from zope.publisher.interfaces.browser import IDefaultBrowserLayer


try:
from plone.formwidget.geolocation.vocabularies import default_map_layer
from plone.formwidget.geolocation.vocabularies import default_map_layers
Expand Down
1 change: 0 additions & 1 deletion src/collective/collectionfilter/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
from Products.CMFPlone.UnicodeSplitter.config import rxGlob_U
from zope.component import getUtility


try:
from Products.CMFPlone.browser.search import quote
except ImportError:
Expand Down
1 change: 0 additions & 1 deletion src/collective/collectionfilter/tests/test_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

import unittest


no_get_installer = False

try:
Expand Down
1 change: 0 additions & 1 deletion src/collective/collectionfilter/tiles/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

import re


# tile names actijg collectionish
COLLECTIONISH_TARGETS = [
"plone.app.standardtiles.contentlisting",
Expand Down
1 change: 0 additions & 1 deletion src/collective/collectionfilter/upgrades.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

import logging


_marker = []

logger = logging.getLogger(__file__)
Expand Down
1 change: 0 additions & 1 deletion src/collective/collectionfilter/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from Products.CMFCore.interfaces import IFolderish
from Products.CMFPlone.utils import safe_unicode


try:
from plone.app.blocks.layoutbehavior import ILayoutAware
except ImportError:
Expand Down
1 change: 0 additions & 1 deletion src/collective/collectionfilter/validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
from zope.interface import Invalid
from zope.schema.interfaces import IField


# Portlets can always validate.
# Tiles can validate if its a collection, otherwise rely on status message warning on save.

Expand Down
1 change: 0 additions & 1 deletion src/collective/collectionfilter/vocabularies.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

import plone.api


# Use this EMPTY_MARKER for your custom indexer to index empty criterions.
EMPTY_MARKER = "__EMPTY__"
TEXT_IDX = "SearchableText"
Expand Down
Loading