Skip to content

Commit b5e5c6d

Browse files
committed
Fix __VERSION__ location
1 parent e9a080a commit b5e5c6d

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

leakix/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@
33
from leakix.plugin import *
44
from leakix.query import *
55
from leakix.response import *
6-
7-
__VERSION__ = "0.1.2"
6+
from leakix.client import __VERSION__

leakix/client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
from leakix.query import *
1010
from leakix.plugin import *
1111
from leakix.field import *
12-
from leakix import __VERSION__
12+
13+
14+
__VERSION__ = "0.1.2"
1315

1416

1517
class Scope(Enum):

0 commit comments

Comments
 (0)