소스 검색

fix problem on Python 3.8

Falko Schindler 1 년 전
부모
커밋
d38671df5f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      website/documentation/content/more/storage_documentation.py

+ 1 - 1
website/documentation/content/more/storage_documentation.py

@@ -5,7 +5,7 @@ from nicegui import ui
 
 from ...model import DetailDocumentation
 
-counter: Counter[str] = Counter()
+counter = Counter()  # type: ignore
 start = datetime.now().strftime(r'%H:%M, %d %B %Y')