Skip to content

Commit 19ade22

Browse files
rename Z3 to z3 to conform with snakecase
1 parent 368b1b2 commit 19ade22

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

causal_testing/specification/variable.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414

1515
# Declare type variable
1616
T = TypeVar("T")
17-
Z3 = TypeVar("Z3")
17+
z3 = TypeVar("Z3")
1818

1919

20-
def z3_types(datatype: T) -> Z3:
20+
def z3_types(datatype: T) -> z3:
2121
"""Cast datatype to Z3 datatype
2222
:param datatype: python datatype to be cast
2323
:return: Type name compatible with Z3 library

0 commit comments

Comments
 (0)