소스 검색

fix format

Adrian Ehrsam 1 년 전
부모
커밋
d80352aba6
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tests/test_aggrid.py

+ 1 - 1
tests/test_aggrid.py

@@ -109,7 +109,7 @@ def test_call_api_method_with_argument(screen: Screen):
 def test_call_column_api_method_with_argument(screen: Screen):
     grid = ui.aggrid({
         'columnDefs': [{'field': 'name'}, {'field': 'age', 'hide': True}],
-        'rowData': [{'name': 'Alice', 'age': '18'}, {'name': 'Bob', 'age': '21'}, {'name': 'Carol', 'age': '42'}]
+        'rowData': [{'name': 'Alice', 'age': '18'}, {'name': 'Bob', 'age': '21'}, {'name': 'Carol', 'age': '42'}],
     })
     ui.button('Show Age', on_click=lambda: grid.call_column_api_method('setColumnVisible', 'age', True))