OpenAOI / anodet

Anomaly detection on images using features from pretrained neural networks.
MIT License
69 stars 22 forks source link

Fix import structure #7

Closed AntonMaxen closed 2 years ago

AntonMaxen commented 3 years ago

rewrite the imports to enclosed import instead of row-breaking ones. from abcde import a, b, c / d, e Should become from abcde import (a, b, d, d, e)