File tree 4 files changed +40
-0
lines changed
{{ cookiecutter.folder_name }}
{{ cookiecutter.import_name }}
4 files changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "cells" : [
3
+ {
4
+ "cell_type" : " code" ,
5
+ "execution_count" : null ,
6
+ "metadata" : {},
7
+ "outputs" : [],
8
+ "source" : [
9
+ " from {{ cookiecutter.import_name }}.starter.starter import starter_function"
10
+ ]
11
+ },
12
+ {
13
+ "cell_type" : " code" ,
14
+ "execution_count" : null ,
15
+ "metadata" : {},
16
+ "outputs" : [],
17
+ "source" : [
18
+ " starter_function()"
19
+ ]
20
+ }
21
+ ],
22
+ "metadata" : {
23
+ "language_info" : {
24
+ "name" : " python"
25
+ }
26
+ },
27
+ "nbformat" : 4 ,
28
+ "nbformat_minor" : 2
29
+ }
Original file line number Diff line number Diff line change
1
+ """
2
+ This is a starter file with an example of an importable function.
3
+
4
+ Remove this function and write your own!
5
+ """
6
+
7
+ def starter_function () -> int :
8
+ return 42
9
+
10
+
11
+
File renamed without changes.
You can’t perform that action at this time.
0 commit comments