mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-19 14:54:21 +01:00
Rewrite long strings using \ instead of + (concatenation).
This commit is contained in:
@@ -42,7 +42,7 @@ class _Serializer(Generic[T]):
|
||||
labels = list(filter(lambda label: label not in (skip or []), self.__labels))
|
||||
|
||||
if len(labels) > len(args):
|
||||
raise LabelerSerializerException(f"{self.name} -> <labels> and <*args> " +
|
||||
raise LabelerSerializerException(f"{self.name} -> <labels> and <*args> " \
|
||||
"arguments should contain the same amount of elements.")
|
||||
|
||||
for index, label in enumerate(labels):
|
||||
|
||||
Reference in New Issue
Block a user