Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
populated authored May 3, 2024
1 parent d2481e3 commit 57974f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions curl_cffi/requests/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ def has(cls, item):
@classmethod
def normalize(cls, item: str) -> 'BrowserType':
browser_map = {
"chrome": cls.chrome123,
"safari": cls.safari17_0,
"safari_ios": cls.safari17_2_ios,
"chrome": cls.chrome,
"safari": cls.safari,
"safari_ios": cls.safari_ios,
}
return browser_map.get(item, item)

Expand Down

0 comments on commit 57974f7

Please sign in to comment.