11 lines
186 B
Python
11 lines
186 B
Python
# -*- mode: python -*-
|
|
# version of annotations module
|
|
# Copyright © 2022 Canonical Ltd.
|
|
|
|
VERSION = "0.1"
|
|
|
|
ANNOTATIONS_FORMAT_VERSION = 5
|
|
|
|
if __name__ == "__main__":
|
|
print(VERSION)
|