Skip to content

Commit ed3f397

Browse files
committed
docs: add . to one line docstrings
1 parent 12ae7de commit ed3f397

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

influxdb_client/client/flux_table.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def __str__(self):
3333
return cls_name + "() columns: " + str(len(self.columns)) + ", records: " + str(len(self.records))
3434

3535
def __repr__(self):
36-
"""Format for inspection"""
36+
"""Format for inspection."""
3737
return f"<{type(self).__name__}: {len(self.columns)} columns, {len(self.records)} records>"
3838

3939
def __iter__(self):
@@ -53,7 +53,7 @@ def __init__(self, index=None, label=None, data_type=None, group=None, default_v
5353
self.index = index
5454

5555
def __repr__(self):
56-
"""Format for inspection"""
56+
"""Format for inspection."""
5757
fields = [repr(self.index)] + [
5858
f'{name}={getattr(self, name)!r}' for name in (
5959
'label', 'data_type', 'group', 'default_value'
@@ -110,6 +110,6 @@ def __str__(self):
110110
return cls_name + "() table: " + str(self.table) + ", " + str(self.values)
111111

112112
def __repr__(self):
113-
"""Format for inspection"""
113+
"""Format for inspection."""
114114
d = self.values
115115
return f"<{type(self).__name__} field={d.get('_field')} value={d.get('_value')}>"

0 commit comments

Comments
 (0)