Completed
Push — develop ( 058985...c753ae )
by Jace
06:33
created

verchew/__main__.py (2 issues)

1
#!/usr/bin/env python
2
3 1
"""Package entry point."""
4
5
6 1
from verchew.script import main
0 ignored issues
show
The name script does not seem to exist in module verchew.
Loading history...
Unable to import 'verchew.script' (expected an indented block (<string>, line 106))

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...
7
8
9
if __name__ == '__main__':  # pragma: no cover
10
    main()
11