Skip to content

Commit b0d6bef

Browse files
committed
Some code improvment
1 parent 97c1c89 commit b0d6bef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

python/psql_rust_driver/_internal/extra_types.pyi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ from typing_extensions import Self
44

55
class SmallInt:
66
"""Represent SmallInt in PostgreSQL and `i16` in Rust."""
7-
7+
88
def __init__(self: Self, inner_value: int) -> Self:
99
"""Create new instance of class.
1010
@@ -15,7 +15,7 @@ class SmallInt:
1515

1616
class Integer:
1717
"""Represent Integer in PostgreSQL and `i32` in Rust."""
18-
18+
1919
def __init__(self: Self, inner_value: int) -> Self:
2020
"""Create new instance of class.
2121
@@ -26,7 +26,7 @@ class Integer:
2626

2727
class BigInt:
2828
"""Represent BigInt in PostgreSQL and `i64` in Rust."""
29-
29+
3030
def __init__(self: Self, inner_value: int) -> Self:
3131
"""Create new instance of class.
3232

0 commit comments

Comments
 (0)