Skip to content

Commit c531e0c

Browse files
committed
reformated
1 parent 8b79fef commit c531e0c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/charm.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,9 +189,7 @@ def _create_test_table(self, cursor) -> None:
189189

190190
def _insert_test_data(self, cursor, random_value: str) -> None:
191191
"""Insert the provided random value into the test table in the database."""
192-
cursor.execute(
193-
f"INSERT INTO `{RANDOM_VALUE_TABLE_NAME}`(data) VALUES('{random_value}')"
194-
)
192+
cursor.execute(f"INSERT INTO `{RANDOM_VALUE_TABLE_NAME}`(data) VALUES('{random_value}')")
195193

196194
@staticmethod
197195
def _generate_random_values(length) -> str:

0 commit comments

Comments
 (0)