Skip to content

Commit 7c41d42

Browse files
committed
Merge pull request #140 from jbampton/fix-word-case-and-remove-whitespace
Fix word case and remove whitespace.
1 parent 61b33f1 commit 7c41d42

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

packages/dash-html-components/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
2020
- [#110](https://github.com/plotly/dash-html-components/pull/110), [#111](https://github.com/plotly/dash-html-components/pull/111) Improved the property definitions in advance of the Dev Tools property validation.
2121
In particular:
2222
- Boolean properties like `hidden` accept a bool or a case insensitive string with the same name (e.g. `'hidden'` or `'HIDDEN'`)
23-
- Numeric properties like `rows`, `max`, `min` allow a stringified number or a number
23+
- Numeric properties like `rows`, `max`, `min` allow a stringified number or a number
2424

2525
### Added
2626
- Added `formNoValidate` & `inputMode` properties.

packages/dash-html-components/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Vanilla HTML components for [Dash][]
99
$ virtualenv venv
1010
$ venv/bin/activate
1111
```
12-
_Note: venv\Scripts\activate for windows_
12+
_Note: venv\Scripts\activate for Windows_
1313
1414
2. Install Python packages required to build components.
1515
```
@@ -51,7 +51,7 @@ _Note: This step will have already been done for you when you ran `npm install`_
5151
# Now you're done. For subsequent changes, if you've got `npm run build:watch`
5252
$ python setup.py install
5353

54-
3. Run the dash layout you want to test
54+
3. Run the Dash layout you want to test
5555

5656
# Import dash_html_components to your layout, then run it:
5757
$ python my_dash_layout.py

packages/dash-html-components/tests/IntegrationTests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def run():
5656
s.server_process.start()
5757
time.sleep(0.5)
5858

59-
# Visit the dash page
59+
# Visit the Dash page
6060
s.driver.get('http://localhost:8050')
6161
time.sleep(0.5)
6262

packages/dash-html-components/tests/test_integration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,10 @@ def update_output(*args):
127127
time.sleep(2)
128128
self.wait_for_text_to_equal('#container', '1, 0')
129129
print(timestamp_1.value)
130-
print((time.time() - (24 * 60 * 60)) * 1000)
130+
print((time.time() - (24 * 60 * 60)) * 1000)
131131
self.assertTrue(
132132
timestamp_1.value >
133-
((time.time() - (24 * 60 * 60)) * 1000))
133+
((time.time() - (24 * 60 * 60)) * 1000))
134134
self.assertEqual(timestamp_2.value, -1)
135135
self.assertEqual(call_count.value, 2)
136136
self.snapshot('button-1 click')
@@ -142,7 +142,7 @@ def update_output(*args):
142142
self.assertEqual(timestamp_1.value, prev_timestamp_1)
143143
self.assertTrue(
144144
timestamp_2.value >
145-
((time.time() - 24 * 60 * 60) * 1000))
145+
((time.time() - 24 * 60 * 60) * 1000))
146146
self.assertEqual(call_count.value, 3)
147147
self.snapshot('button-2 click')
148148
prev_timestamp_2 = timestamp_2.value

0 commit comments

Comments
 (0)