Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
jreadey committed Oct 3, 2023
1 parent d350ce9 commit b1148df
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ if [ $run_pyflakes ]; then
fi
fi

#pip install --upgrade build
pip install --upgrade build

echo "running build"
python -m build
Expand Down
8 changes: 4 additions & 4 deletions tests/integ/dataset_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -682,10 +682,10 @@ def testResizableDataset(self):
rspJson = json.loads(rsp.text)

# reduce the size to 5 elements
#payload = {"shape": 5}
#rsp = self.session.put(req, data=json.dumps(payload), headers=headers)
#self.assertEqual(rsp.status_code, 201)
#rspJson = json.loads(rsp.text)
# payload = {"shape": 5}
# rsp = self.session.put(req, data=json.dumps(payload), headers=headers)
# self.assertEqual(rsp.status_code, 201)
# rspJson = json.loads(rsp.text)

# verify updated-shape using the GET shape request
rsp = self.session.get(req, headers=headers)
Expand Down

0 comments on commit b1148df

Please sign in to comment.