Skip to content

Commit b1d0e34

Browse files
author
Dorian Birraux
committed
minor editing.
1 parent 38910c5 commit b1d0e34

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.coveragerc

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[run]
2-
branch = True
3-
timid = True
4-
source = wolframclient
2+
branch=True
3+
timid=True
4+
source=wolframclient
55
omit =
66
# client
77
wolframclient/cli/*

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
setup(
2020
name = 'wolframclient',
21-
version = '1.0preview1',
21+
version = '1.0rc1',
2222
description = 'A Python library with various tools to interact with the Wolfram Language and the Wolfram Cloud.',
2323
author = 'Wolfram Research',
2424
author_email = [

wolframclient/language/expression.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def __getattr__(self, attr):
117117
# Now
118118
wl.Now
119119
# Quantity[3, "Hours"]
120-
wl.Quanity(3, "Hours")
120+
wl.Quantity(3, "Hours")
121121
# Select[PrimeQ, {1,2,3,4}]
122122
wl.Select(wl.PrimeQ, [1, 2, 3, 4])
123123
"""

0 commit comments

Comments
 (0)