mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-25 02:57:14 +08:00
Use explicit "# type: str" instead of '' shortcut.
This commit is contained in:
@@ -3,8 +3,8 @@ from typing import List
|
||||
# TODO group database entry object type
|
||||
|
||||
class struct_group:
|
||||
gr_name = ''
|
||||
gr_passwd = ''
|
||||
gr_name = ... # type: str
|
||||
gr_passwd = ... # type: str
|
||||
gr_gid = 0
|
||||
gr_mem = ... # type: List[str]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user