pybricks: add __init__.py

This file was missing which breaks some tools that don't know about
namespace packages. Also `from pybricks import version` is a thing.
This commit is contained in:
David Lechner
2022-06-09 19:25:44 -05:00
parent 34992d5b20
commit c6163fcc81
2 changed files with 13 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
from typing import Tuple
version: Tuple[str, str, str] = (
"hub",
"3.2.0b1",
"v3.2.0b1-GIT_HASH on DATE",
)