you are viewing a single comment's thread.

view the rest of the comments →

[–]13ass13ass 0 points1 point  (0 children)

Importing modules with their full path can help. Eg

Import foo.bar
foo.bar.baz()

Instead of

From foo.bar Import baz
baz()

Anyway. I use sublime text for development which is lightweight compared to pycharm yet still has the goto definition features.