We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b79fef commit c531e0cCopy full SHA for c531e0c
src/charm.py
@@ -189,9 +189,7 @@ def _create_test_table(self, cursor) -> None:
189
190
def _insert_test_data(self, cursor, random_value: str) -> None:
191
"""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
- )
+ cursor.execute(f"INSERT INTO `{RANDOM_VALUE_TABLE_NAME}`(data) VALUES('{random_value}')")
195
196
@staticmethod
197
def _generate_random_values(length) -> str:
0 commit comments