Skip to content

Commit c84801f

Browse files
Appease the linter
1 parent 5f59417 commit c84801f

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

pvlib/location.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class Location:
4747
ints and floats must be non-fractional N-hour offsets from UTC, which
4848
are converted to the 'Etc/GMT-N' format (note limited range of N and
4949
its conventional sign change).
50-
Raises TypeError for time zone conversion issues or
50+
Raises TypeError for time zone conversion issues or
5151
pytz.exceptions.UnknownTimeZoneError when (stringified) time zone is
5252
not recognized by pytz.timezone.
5353

pvlib/tests/test_location.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,10 @@ def test_location_all():
2929

3030

3131
@pytest.mark.parametrize(
32-
'tz,tz_expected',
33-
[
32+
'tz,tz_expected', [
3433
pytest.param('UTC', 'UTC'),
3534
pytest.param('Etc/GMT+5', 'Etc/GMT+5'),
36-
pytest.param('US/Mountain','US/Mountain'),
35+
pytest.param('US/Mountain', 'US/Mountain'),
3736
pytest.param('America/Phoenix', 'America/Phoenix'),
3837
pytest.param('Asia/Kathmandu', 'Asia/Kathmandu'),
3938
pytest.param('Asia/Yangon', 'Asia/Yangon'),

0 commit comments

Comments
 (0)