diff --git a/src/pycookiecheat/chrome.py b/src/pycookiecheat/chrome.py index 1cae912..4251df2 100644 --- a/src/pycookiecheat/chrome.py +++ b/src/pycookiecheat/chrome.py @@ -9,6 +9,8 @@ domain, just send it the domain you'd like to use instead. """ +from __future__ import annotations + import logging import sqlite3 import sys diff --git a/src/pycookiecheat/firefox.py b/src/pycookiecheat/firefox.py index cb85d16..9f0cd8f 100644 --- a/src/pycookiecheat/firefox.py +++ b/src/pycookiecheat/firefox.py @@ -12,6 +12,8 @@ {'logged_in': 'yes', 'user_session': 'n3tZzN45P56Ovg5MB'} """ +from __future__ import annotations + import configparser import logging import shutil diff --git a/tests/test_chrome.py b/tests/test_chrome.py index 08882cb..b20a1ed 100755 --- a/tests/test_chrome.py +++ b/tests/test_chrome.py @@ -1,7 +1,5 @@ """test_pycookiecheat.py :: Tests for pycookiecheat module.""" -from __future__ import annotations - import os import sys import time diff --git a/tests/test_firefox.py b/tests/test_firefox.py index 22156e2..7be4e00 100644 --- a/tests/test_firefox.py +++ b/tests/test_firefox.py @@ -1,7 +1,5 @@ """Tests for Firefox cookies & helper functions.""" -from __future__ import annotations - import re import typing as t from datetime import datetime, timedelta