Skip to content

Commit 96b8d73

Browse files
committed
make session a little more explicit
1 parent 009e683 commit 96b8d73

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/1-fetch/wikipedia_fetch.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,8 @@ def main():
158158
args = parse_arguments()
159159
shared.paths_log(LOGGER, PATHS)
160160
shared.git_fetch_and_merge(args, PATHS["repo"])
161-
tool_data = query_wikipedia_languages(shared.get_session())
161+
session = shared.get_session()
162+
tool_data = query_wikipedia_languages(session)
162163
args = write_data(args, tool_data)
163164
args = shared.git_add_and_commit(
164165
args,

0 commit comments

Comments
 (0)