Skip to content

Commit 72fb9ed

Browse files
SoftwareDevice: Missing copyright notices
1 parent 88594d0 commit 72fb9ed

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

SoftwareDevice/__init__.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
#####################################################################
2+
# #
3+
# /labscript_devices/SoftwareDevice/__init__.py #
4+
# #
5+
# Copyright 2019, Monash University and contributors #
6+
# #
7+
# This file is part of labscript_devices, in the labscript suite #
8+
# (see http://labscriptsuite.org), and is licensed under the #
9+
# Simplified BSD License. See the license.txt file in the root of #
10+
# the project for the full license. #
11+
# #
12+
#####################################################################
13+
114
from labscript_utils import check_version
215

316
import sys

SoftwareDevice/testing/test.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@
77
DummyPseudoclock('pseudoclock')
88
SoftwareDevice('software_device')
99

10+
1011
def foo(shot_context, t, arg):
1112
print(f"hello, {arg}!")
12-
start()
13+
1314

1415
software_device.add_function('start', foo, 'world')
1516

16-
stop(2)
17+
start()
18+
stop(1)

SoftwareDevice/utils.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
#####################################################################
2+
# #
3+
# /labscript_devices/SoftwareDevice/utils.py #
4+
# #
5+
# Copyright 2019, Monash University and contributors #
6+
# #
7+
# This file is part of labscript_devices, in the labscript suite #
8+
# (see http://labscriptsuite.org), and is licensed under the #
9+
# Simplified BSD License. See the license.txt file in the root of #
10+
# the project for the full license. #
11+
# #
12+
#####################################################################
13+
114
import inspect
215
from types import FunctionType
316
from labscript_utils import dedent

0 commit comments

Comments
 (0)