mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-10 14:01:55 +08:00
Change type of logging.RotatingFileHandler.maxBytes from str to int (#12045)
This commit is contained in:
@@ -46,7 +46,7 @@ class BaseRotatingHandler(FileHandler):
|
||||
def rotate(self, source: str, dest: str) -> None: ...
|
||||
|
||||
class RotatingFileHandler(BaseRotatingHandler):
|
||||
maxBytes: str # undocumented
|
||||
maxBytes: int # undocumented
|
||||
backupCount: int # undocumented
|
||||
if sys.version_info >= (3, 9):
|
||||
def __init__(
|
||||
|
||||
Reference in New Issue
Block a user