Minor stuff, cleanup and formating.
This commit is contained in:
@ -71,12 +71,7 @@ def PrettyPrint(title_keys=('title', 'name', 'id'), print_values=True, sort=True
|
||||
row = args[0]
|
||||
for key in title_keys:
|
||||
if key in row:
|
||||
print(
|
||||
Style.BRIGHT,
|
||||
row.get(key),
|
||||
Style.RESET_ALL,
|
||||
sep=''
|
||||
)
|
||||
print(Style.BRIGHT, row.get(key), Style.RESET_ALL, sep='')
|
||||
break
|
||||
|
||||
if print_values:
|
||||
|
||||
@ -84,6 +84,7 @@ class ValueHolder:
|
||||
def __itruediv__(self, other):
|
||||
self.value /= other
|
||||
|
||||
|
||||
"""
|
||||
object.__matmul__(self, other)
|
||||
object.__truediv__(self, other)
|
||||
|
||||
Reference in New Issue
Block a user