Replies: 2 comments
-
That's kind of the point of doing it. |
Beta Was this translation helpful? Give feedback.
0 replies
-
From past experience this will cause difficulties for future maintainers. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The name shadowing in
sas/system/__init__.py
such asfrom .env import env
is confusing. With this style you cannot access the module without doing tricks likeimport sys; env = sys.modules['sas.system.env']
.Beta Was this translation helpful? Give feedback.
All reactions