Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
cthoyt committed Jan 2, 2021
1 parent f29b137 commit 3ea5f18
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/bioversions/sources/expasy.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,9 @@ class ExPASyGetter(Getter):

name = 'ExPASy'

def get() -> str:
def get(self) -> str:
"""Get the latest ExPASy version number."""
s = requests.Session()
s.mount()
res = s.get(URL, stream=True)
li = res.iter_lines()
next(li)
Expand Down

0 comments on commit 3ea5f18

Please sign in to comment.