Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ setup: .installed
# Rather than working out the right dependencies, just rebuild this every time.
# If a human is rebuilding it, it's probably because something has changed.
.PHONY: dist/main
dist/archive.tar.gz: .installed
dist/archive.tar.gz: .installed src/*
./build.sh

test:
Expand Down
3 changes: 2 additions & 1 deletion src/main.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# pylint: disable=missing-module-docstring
# pylint: disable=missing-module-docstring,consider-using-from-import,import-error,unused-import
import asyncio

from viam.module.module import Module
import src.blurry_classifier_module

if __name__ == "__main__":
asyncio.run(Module.run_from_registry())