Skip to content

Commit 805e644

Browse files
fix: value of FindPostmasterResultCode::not_found is corrected
It was declared as a tuple (1,) , not a number (1).
1 parent 13d91ea commit 805e644

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

‎src/impl/platforms/internal_platform_utils.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
class InternalPlatformUtils:
1010
class FindPostmasterResultCode(enum.Enum):
1111
ok = 0
12-
not_found = 1,
12+
not_found = 1
1313
not_implemented = 2
1414
many_processes = 3
1515
has_problems = 4

0 commit comments

Comments
 (0)