mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 19:01:15 +00:00
12 lines
295 B
Python
12 lines
295 B
Python
from datetime import datetime
|
|
|
|
from github.GithubObject import NonCompletableGithubObject
|
|
|
|
class StatsCodeFrequency(NonCompletableGithubObject):
|
|
@property
|
|
def additions(self) -> int: ...
|
|
@property
|
|
def deletions(self) -> int: ...
|
|
@property
|
|
def week(self) -> datetime: ...
|