We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 019812c commit 0dc92b1Copy full SHA for 0dc92b1
testgres/enums.py
@@ -58,7 +58,6 @@ class ProcessType(Enum):
58
59
@staticmethod
60
def from_process(process):
61
- # yapf: disable
62
# legacy names for older releases of PG
63
alternative_names = {
64
ProcessType.LogicalReplicationLauncher: [
@@ -67,7 +66,7 @@ def from_process(process):
67
66
ProcessType.BackgroundWriter: [
68
'writer'
69
],
70
- }
+ } # yapf: disable
71
72
# we deliberately cut special words and spaces
73
cmdline = ''.join(process.cmdline()) \
0 commit comments