Skip to content

Commit 98ace1d

Browse files
committed
small fix style
1 parent 106fd0e commit 98ace1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/scheme.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def is_any_table(entry):
4242
:param entry: A scheme entry to check
4343
:return: True if scheme entry is table (independent of table type) and False otherwise
4444
"""
45-
return entry in [SchemeEntryType.TABLE, SchemeEntryType.COLUMN_TABLE]
45+
return entry in (SchemeEntryType.TABLE, SchemeEntryType.COLUMN_TABLE)
4646

4747
@staticmethod
4848
def is_column_table(entry):

0 commit comments

Comments
 (0)