Skip to content
Snippets Groups Projects
Commit b15237b3 authored by Alex Kavanagh's avatar Alex Kavanagh
Browse files

Fix up the imports on a recent change to follow coding spec

Essentially, we want to avoid doing:

    from module import f1, f2, f2

and instead doL

    import module

    module.f1()

This helps with reading the code and understanding where the functions
come from.

Change-Id: I1bc06441dc5595e8a0c84a5b5c3db5d88b68a4f2
parent 52306f84
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment