Issues (253)

psqlextra/apps.py (2 issues)

1 1
from django.apps import AppConfig
0 ignored issues
show
The import django.apps could not be resolved.

This can be caused by one of the following:

1. Missing Dependencies

This error could indicate a configuration issue of Pylint. Make sure that your libraries are available by adding the necessary commands.

# .scrutinizer.yml
before_commands:
    - sudo pip install abc # Python2
    - sudo pip3 install abc # Python3
Tip: We are currently not using virtualenv to run pylint, when installing your modules make sure to use the command for the correct version.

2. Missing __init__.py files

This error could also result from missing __init__.py files in your module folders. Make sure that you place one file in each sub-folder.

Loading history...
2
3
4 1
class PostgresExtraAppConfig(AppConfig):
0 ignored issues
show
This class has no __init__ method.
Loading history...
5 1
    name = 'psqlextra'
6
    verbose_name = 'PostgreSQL Extra'
7