scientifichackers / ampy

MicroPython Tool - Utility to interact with a MicroPython board over a serial connection.
MIT License
718 stars 156 forks source link

Fix location of progress_bar #117

Open lisaev1 opened 1 year ago

lisaev1 commented 1 year ago

I think in ampy/cli.py, progress_bar should be namespaced, i.e.

ampy/cli.py:
...
    31  from progress_bar import PorgressBar
    32  from progress_bar import PorgressBarBath
...

should be

ampy/cli.py:
...
    31  from ampy.progress_bar import PorgressBar
    32  from ampy.progress_bar import PorgressBarBath
...

similar to files and pyboard.

Thanks!