Langenfeld 2019-07-10 16:07:47 +02:00
rodzic f268ebad1b
commit f358ea6c0a
3 zmienionych plików z 13 dodań i 2 usunięć

Wyświetl plik

@ -0,0 +1,12 @@
from .gitea import (
Gitea,
User,
Organization,
Team,
Repository,
Branch,
NotFoundException,
AlreadyExistsException,
Issue,
Milestone,
)

Wyświetl plik

@ -5,9 +5,9 @@ from .gitea import (
Team,
Repository,
Branch,
version,
NotFoundException,
AlreadyExistsException,
Issue,
Milestone,
)

Wyświetl plik

@ -4,7 +4,6 @@ import logging
from datetime import datetime
logging = logging.getLogger("gitea")
version = "0.4.6"
class AlreadyExistsException(Exception):
pass