How to display different tips according to a different directory?
I have a project assets, Which contains some of the directory,
for example:
root/
-- A/
-- B/
-- ..
A directory(*.py) is loaded by the server A process
B directory(*.py) is loaded by the server B process
A process and B process is a service group in the different components.
A process and B process are embedded python interpreter, X module(python) built in memory(A process and B process).
I have passed the tool X-module into X.py, X.py provide Pycharm code completion.
The question now is that in the A directory py files need X.py(A process), B directory need X.py(B Process). How to display different tips according to a different directory? I have a way to do it?
Please sign in to leave a comment.