Skip to content

Commit

Permalink
Import future annotations for python3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
n8henrie committed May 13, 2024
1 parent 729cba9 commit 4eb2aa6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 2 additions & 0 deletions src/pycookiecheat/chrome.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions src/pycookiecheat/firefox.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
{'logged_in': 'yes', 'user_session': 'n3tZzN45P56Ovg5MB'}
"""

from __future__ import annotations

import configparser
import logging
import shutil
Expand Down
2 changes: 0 additions & 2 deletions tests/test_chrome.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
"""test_pycookiecheat.py :: Tests for pycookiecheat module."""

from __future__ import annotations

import os
import sys
import time
Expand Down
2 changes: 0 additions & 2 deletions tests/test_firefox.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 4eb2aa6

Please sign in to comment.