Skip to content

Commit e83109d

Browse files
committed
Lint error (dangerous but ok for now)
1 parent e96a71e commit e83109d

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
dev-requirements-temp.txt
44
test*.json
55
labstate*.json
6+
.vscode
67

78
# compiled data
89
data/*

lightlab/laboratory/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ def __setitem__(self, i, v):
212212
# Renaming instrument to conform to the dict's key
213213
# named_list['name1'] = Instrument('name2')
214214
# Instrument will be renamed to name1 prior to insertion
215-
v._name = i
215+
v._name = i # pylint: disable=protected-access
216216

217217
# special case when v is already in the list, in
218218
# which case one must do nothing.

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# version.py
22

33
# The short X.Y version.
4-
version = '1.0.8.dev0'
4+
version = '1.1.0'
55
# The full version, including alpha/beta/rc tags.
66
release = version + ""
77

0 commit comments

Comments
 (0)