Skip to content

Commit f2a2789

Browse files
pylint: fix multiple-statements cases
Fix all cases of C0321 multiple-statements. Part of #270
1 parent a990309 commit f2a2789

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/suites/lib/tarantool_server.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ def script_dst(self):
7272

7373
@property
7474
def script(self):
75-
if not hasattr(self, '_script'): self._script = None
75+
if not hasattr(self, '_script'):
76+
self._script = None
7677
return self._script
7778

7879
@script.setter

0 commit comments

Comments
 (0)