Skip to content

Commit 9200fd0

Browse files
authored
Merge pull request #221 from Peter-Lande/artifact-stream
Add Artifacts Stream
2 parents 531efe8 + 94b0409 commit 9200fd0

15 files changed

Lines changed: 55 additions & 9 deletions

File tree

pyartifactory/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Import all object definitions here.
33
"""
4+
45
from __future__ import annotations
56

67
import contextlib

pyartifactory/exception.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Definition of all exceptions.
33
"""
4+
45
from __future__ import annotations
56

67

pyartifactory/models/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Import all models here.
33
"""
4+
45
from __future__ import annotations
56

67
from typing import Union

pyartifactory/models/artifact.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Definition of all artifact models.
33
"""
4+
45
from __future__ import annotations
56

67
import hashlib

pyartifactory/models/auth.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Definition of all auth models.
33
"""
4+
45
from __future__ import annotations
56

67
from typing import Optional, Tuple, Union

pyartifactory/models/build.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Definition of all build models.
33
"""
4+
45
from __future__ import annotations
56

67
from typing import Dict, List, Optional

pyartifactory/models/group.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Definition of all group models.
33
"""
4+
45
from __future__ import annotations
56

67
from typing import List, Optional

pyartifactory/models/permission.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Definition of all permission models.
33
"""
4+
45
from __future__ import annotations
56

67
from enum import Enum

pyartifactory/models/repository.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Definition of all repository models.
33
"""
4+
45
from __future__ import annotations
56

67
from enum import Enum

pyartifactory/models/user.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Definition of all user related models.
33
"""
4+
45
from __future__ import annotations
56

67
from datetime import datetime

0 commit comments

Comments
 (0)