Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
YunchuWang authored Sep 23, 2024
1 parent faed5f1 commit 592723d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_mysql.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,8 @@ def test_mysql_encode_mysqlrowlist(self):
""", "json")
mysqlRowList: func.MySqlRowList = mysql.MySqlConverter.decode(
data=datum, trigger_metadata=None)
datum = mysql.MySqlConverter.encode(obj=mysqlRowList, expected_type=None)
datum = mysql.MySqlConverter.encode(
obj=mysqlRowList, expected_type=None)
self.assertEqual(datum.type,
'json',
'Datum type should be JSON')
Expand Down

0 comments on commit 592723d

Please sign in to comment.