Skip to content

Commit f4b4a11

Browse files
committed
Fix lint errors
1 parent 0a217d4 commit f4b4a11

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • lib/node_modules/@stdlib/math/base/dist/betaprime/kurtosis/test/fixtures/python

lib/node_modules/@stdlib/math/base/dist/betaprime/kurtosis/test/fixtures/python/runner.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ def gen(alpha, beta, name):
2727
``` python
2828
python> alpha = random_sample( 100 ) * 10
2929
python> beta = random_sample( 100 ) * 10
30-
python> gen(alpha, beta, \"./data.json\")
30+
python> gen(alpha, beta, './data.json')
3131
```
3232
"""
3333
dist = betaprime(alpha, beta)
34-
kurtosis = dist.stats(moments='k')
34+
kurtosis = dist.stats(moments="k")
3535

3636
# Store data to be written to file as a dictionary:
3737
data = {
@@ -44,7 +44,7 @@ def gen(alpha, beta, name):
4444
filepath = os.path.join(DIR, name)
4545

4646
# Write the data to the output filepath as JSON:
47-
with open(filepath, 'w') as outfile:
47+
with open(filepath, "w") as outfile:
4848
json.dump(data, outfile)
4949

5050

0 commit comments

Comments
 (0)