Wildcard(*) imports can increase production risks.

Production RiskSoftware ResiliencyProgramming Best Practices

Wildcard(*) imports can increase production risks.

This code insight counts one violation each time a wildcard import is used.

Violations pattern is:

import *

from xxx import *

5362

Why you should care

In general, import statements should be as specific as possible and you should only import what you need. When “from module import *" is used, you are implicitly loading all locals of the imported module into and over the importing module. This has two disadvantages:

  • first, you might unintentionally overload already imported objects.
  • Second, it becomes difficult to detect undefined names in the program that imported the module.

Business Impacts

Production Risk

CAST recommendations

References

https://www.quantifiedcode.com/knowledge-base/maintainability/Avoid%20using%20wildcard%20%28%2A%29%20imports/3Q3eTYIU

5362

About CAST and Highlight’s Code Insights

Over the last 25 years, CAST has leveraged unique knowledge on software quality measurement by analyzing thousands of applications and billions of lines of code. Based on this experience and community standards on programming best practices, Highlight implements hundreds of code insights across 15+ technologies to calculate health factors of a software.

See featuresHow it works