Conditions | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | import re |
||
50 | def __init__(self, url=None): |
||
51 | self.parsed_repo = url or giturlparse.parse( |
||
52 | git('config --get remote.origin.url'.split(' ')) |
||
53 | ) |
||
54 | self.commit_history = git( |
||
55 | 'log --oneline --no-merges --no-color'.split(' ') |
||
56 | ).split('\n') |
||
57 | |||
58 | self.pull_requests = merged_pull_requests() |
||
59 | |||
60 | self.tags = git('tag --list'.split(' ')) |
||
61 | |||
82 |
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.
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.