X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=type%2Flocations.py;fp=type%2Flocations.py;h=744f63a3997f38b26b379b7bf25d19425ec7d2f3;hb=ba223f821df1e9b8abbb6f6d23d5ba92c5a70b05;hp=0000000000000000000000000000000000000000;hpb=4f11c12a1afb209eb1ba52a4632c5f49234cc0dc;p=python_utils.git diff --git a/type/locations.py b/type/locations.py new file mode 100644 index 0000000..744f63a --- /dev/null +++ b/type/locations.py @@ -0,0 +1,9 @@ +#!/usr/bin/env python3 + +import enum + +@enum.unique +class Location(enum.Enum): + UNKNOWN = 0 + HOUSE = 1 + CABIN = 2