fix: add space following python style guide"

This commit is contained in:
Isaque Alves 2022-06-17 02:03:41 -03:00
parent b4a735b814
commit dcd8441a05

View File

@ -36,7 +36,7 @@ class Column(BaseModel):
length_parts.append(f"max_digits={self.max_digits}")
if self.decimal_places:
length_parts.append(f"decimal_places={self.decimal_places}")
length = ",".join(length_parts)
length = ", ".join(length_parts)
if self.null:
null = "null=True, "
if self.default is not None: