Simple REST app as a Key value storage interface
Go to file
Benjamin Dauvergne fe2b44ab29 misc: silence pylint warning (#72942)
@logit
    def head(self, request, partner_name, cut_uuid, petal_name):

    -> pylint: An attribute defined in django.views.generic.base line 85 hides this method

It comes from some conditional code in the base View class:

    class View:
    ...
	    def setup(self, request, *args, **kwargs):
		"""Initialize attributes shared by all view methods."""
		if hasattr(self, 'get') and not hasattr(self, 'head'):
		    self.head = self.get
2023-01-10 19:18:45 +01:00
debian debian: remove obsolete standard error output config from systemd unit (#65101) 2022-08-02 10:01:54 +02:00
petale misc: silence pylint warning (#72942) 2023-01-10 19:18:45 +01:00
tests dj32: remove use of force_text (#72942) 2023-01-10 18:57:15 +01:00
.gitignore add gitignore 2017-02-15 18:08:52 +01:00
.pre-commit-config.yaml ci: update pyupgrade to 3.1.0 (#70693) 2022-10-26 19:22:44 +02:00
COPYING initial commit 2017-02-15 17:26:34 +01:00
Jenkinsfile ci: only build package for bullseye (#72729) 2022-12-22 17:21:28 +01:00
MANIFEST.in add french locale 2017-03-30 01:03:54 +02:00
README add README 2017-02-16 14:31:12 +01:00
check-migrations.sh tox: add check-migrations environment 2022-03-17 18:53:36 +01:00
jenkins.sh jenkins.sh: add Django to compile translations 2018-03-30 14:21:03 +02:00
manage.py initial commit 2017-02-15 17:26:34 +01:00
pylint.rc pylint: remove obsolete options 2022-07-06 13:04:36 +02:00
pylint.sh tox: fix pylint 2022-03-10 17:14:41 +01:00
setup.py dj32: run tests with django 3.2 (#72942) 2023-01-10 18:45:29 +01:00
tox.ini dj32: run tests with django 3.2 (#72942) 2023-01-10 18:45:29 +01:00

README

Petale
=======

Simple REST app as a Key value storage interface