Skip to content

Commit 49de14b

Browse files
committed
fixed couple osbot_utils.decorators.methods.type_safe references
1 parent e279031 commit 49de14b

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

osbot_aws/aws/cloud_front/Cloud_Front.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
import time
22
from typing import List
3-
from osbot_utils.decorators.methods.type_safe import type_safe
43
from osbot_aws.apis.Session import Session
54
from osbot_utils.base_classes.Kwargs_To_Self import Kwargs_To_Self
5+
from osbot_utils.type_safe.decorators import type_safe
6+
67

78
class Cloud_Front(Kwargs_To_Self):
89

osbot_aws/aws/s3/S3__Key_Generator.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
from osbot_utils.type_safe.Type_Safe import Type_Safe
2-
from osbot_utils.decorators.methods.type_safe import type_safe
3-
from osbot_utils.helpers.Safe_Id import Safe_Id
4-
from osbot_utils.utils.Misc import utc_now, date_today
1+
from osbot_utils.type_safe.Type_Safe import Type_Safe
2+
from osbot_utils.helpers.Safe_Id import Safe_Id
3+
from osbot_utils.type_safe.decorators import type_safe
4+
from osbot_utils.utils.Misc import utc_now, date_today
55

66
S3_PATH__WHEN_BLOCK_SIZE = 5
77

0 commit comments

Comments
 (0)