From dcd8441a05f530efad85e476968c384850b39fd4 Mon Sep 17 00:00:00 2001 From: Isaque Alves Date: Fri, 17 Jun 2022 02:03:41 -0300 Subject: [PATCH] fix: add space following python style guide" --- aerich/inspect/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aerich/inspect/__init__.py b/aerich/inspect/__init__.py index 1b7f8db..16da8ec 100644 --- a/aerich/inspect/__init__.py +++ b/aerich/inspect/__init__.py @@ -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: