Re: [code-quality] Pylint and sys path

2015-03-12 Thread Ned Batchelder
On 3/12/15 4:51 PM, Dani Hodovic wrote: I have a very large project with deeply nested hierarchies. To find the root directory I use a source root walker and append the root directory to sys.path. This way, I can easily import things in the project relative to the root directory. The problem is

Re: [code-quality] Pylint and sys path

2015-03-12 Thread Florian Bruhin
* Dani Hodovic [2015-03-12 21:51:50 +0100]: > I have a very large project with deeply nested hierarchies. To find the > root directory I use a source root walker and append the root directory to > sys.path. This way, I can easily import things in the project relative to > the root directory. I do

Re: [code-quality] Pylint and sys path

2015-03-12 Thread Ian Cordasco
On Thu, Mar 12, 2015 at 3:51 PM, Dani Hodovic wrote: > I have a very large project with deeply nested hierarchies. To find the > root directory I use a source root walker and append the root directory to > sys.path. This way, I can easily import things in the project relative to > the root direct

[code-quality] Pylint and sys path

2015-03-12 Thread Dani Hodovic
I have a very large project with deeply nested hierarchies. To find the root directory I use a source root walker and append the root directory to sys.path. This way, I can easily import things in the project relative to the root directory. The problem is that pylint doesn't detect this, even thoug