Skip to content

Commit c427f54

Browse files
committed
pylint puked on the long lines
split up long lines
1 parent 259ac16 commit c427f54

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

examples/requests_api_steam.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313

1414
# Steam API Docs: https://steamcommunity.com/dev
1515
# Steam API Key: https://steamcommunity.com/dev/apikey
16-
# Steam Usernumber: Visit https://steamcommunity.com, click on your profile icon, your usernumber will be in the browser url.
16+
# Steam Usernumber: Visit https://steamcommunity.com
17+
# click on your profile icon, your usernumber will be in the browser url.
1718

1819
# Ensure these are setup in settings.toml
1920
# Requires Steam Developer API key
@@ -29,8 +30,9 @@
2930
# 900 = 15 mins, 1800 = 30 mins, 3600 = 1 hour
3031
sleep_time = 900
3132

32-
# Deconstruct URL
33-
# http://api.steampowered.com/IPlayerService/GetOwnedGames/v0001/?key=XXXXXXXXXXXXXXXXXXXXX&include_played_free_games=1&steamid=XXXXXXXXXXXXXXXX&format=json
33+
# Deconstruct URL (pylint hates long lines)
34+
# http://api.steampowered.com/IPlayerService/GetOwnedGames/v0001/
35+
#?key=XXXXXXXXXXXXXXXXXXXXX&include_played_free_games=1&steamid=XXXXXXXXXXXXXXXX&format=json
3436
Steam_OwnedGames_URL = (
3537
"http://api.steampowered.com/IPlayerService/GetOwnedGames/v0001/?"
3638
+ "key="

0 commit comments

Comments
 (0)