ml-rest-api-caching icon indicating copy to clipboard operation
ml-rest-api-caching copied to clipboard

Imports should be at the top, not in method calls

Open WSHoekstra opened this issue 1 year ago • 0 comments

There are some instances in your code where you import in a function or method call. This is inefficient, because the import gets run multiple times. I would think it would be cleaner if you do all your imports once at the top of the file in accordance with pep8.

WSHoekstra avatar Aug 13 '24 19:08 WSHoekstra