I've inherited some code with imports in each function and using underscores for each module imported as below
def my_func():
    from foo import bar as _bar
    from spam import meat as _meat
    # Do some work
What is the point in the _bar? All imports are done like this.
 
     
     
    