mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-07 02:10:59 +08:00
Avoid using string literals in type annotations (#2294)
This commit is contained in:
committed by
Jelle Zijlstra
parent
25ad95de4f
commit
6192cce9d9
2
third_party/2/pymssql.pyi
vendored
2
third_party/2/pymssql.pyi
vendored
@@ -11,7 +11,7 @@ class Connection(object):
|
||||
def autocommit(self, status: bool) -> None: ...
|
||||
def close(self) -> None: ...
|
||||
def commit(self) -> None: ...
|
||||
def cursor(self) -> 'Cursor': ...
|
||||
def cursor(self) -> Cursor: ...
|
||||
def rollback(self) -> None: ...
|
||||
|
||||
class Cursor(object):
|
||||
|
||||
Reference in New Issue
Block a user