Skip to content

Commit

Permalink
Remove some unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiX committed May 16, 2022
1 parent 601af87 commit 5dbf5c2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
7 changes: 1 addition & 6 deletions src/steam_crawler/crawler.py
@@ -1,16 +1,11 @@
# SPDX-License-Identifier: MIT-0

# Must be first! (next release of steam package)
# import steam.monkey
# steam.monkey.patch_minimal()

from collections.abc import Iterator
from contextlib import contextmanager
from time import sleep
import json

from rich.progress import Progress, MofNCompleteColumn
from steam.client import SteamClient, EMsg
from steam.client import SteamClient
from steam.webapi import WebAPI

from .db import Database
Expand Down
1 change: 0 additions & 1 deletion src/steam_crawler/db.py
Expand Up @@ -3,7 +3,6 @@
import sqlite3
from importlib.resources import read_text
from collections import defaultdict
from collections.abc import Iterator


class Database:
Expand Down

0 comments on commit 5dbf5c2

Please sign in to comment.