X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=type%2Flocations.py;h=b311064a680bf87350949c419e36bd9a474816ae;hb=f6ec577f04044f21076c4c24c6aa2ab784c6cfc9;hp=744f63a3997f38b26b379b7bf25d19425ec7d2f3;hpb=ba223f821df1e9b8abbb6f6d23d5ba92c5a70b05;p=python_utils.git diff --git a/type/locations.py b/type/locations.py index 744f63a..b311064 100644 --- a/type/locations.py +++ b/type/locations.py @@ -1,9 +1,16 @@ #!/usr/bin/env python3 +# © Copyright 2021-2022, Scott Gasch + +"""An enum to represent locations.""" + import enum + @enum.unique class Location(enum.Enum): + """An enum to represent locations.""" + UNKNOWN = 0 HOUSE = 1 CABIN = 2