File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 19
19
20
20
21
21
def get_reportsizedeltas_object (
22
- repository_name = "FooOwner/BarRepository" , sketches_reports_source = "foo-artifact-name" , token = "foo token"
23
- ):
22
+ repository_name : str = "FooOwner/BarRepository" ,
23
+ sketches_reports_source : str = "foo-artifact-name" ,
24
+ token : str = "foo token" ,
25
+ ) -> reportsizedeltas .ReportSizeDeltas :
24
26
"""Return a reportsizedeltas.ReportSizeDeltas object to use in tests.
25
27
26
28
Keyword arguments:
@@ -33,7 +35,7 @@ def get_reportsizedeltas_object(
33
35
)
34
36
35
37
36
- def directories_are_same (left_directory , right_directory ):
38
+ def directories_are_same (left_directory , right_directory ) -> bool :
37
39
"""Check recursively whether two directories contain the same files.
38
40
Based on https://stackoverflow.com/a/6681395
39
41
You can’t perform that action at this time.
0 commit comments