removed debug code
This commit is contained in:
parent
29f0e73c0b
commit
a58198b5c9
1 changed files with 0 additions and 2 deletions
|
@ -1,4 +1,3 @@
|
|||
import logging
|
||||
import os
|
||||
|
||||
from movie_db.movie_db import MovieDB
|
||||
|
@ -10,7 +9,6 @@ from movie_db.serializers import MovieSerializer, MovieResultSerializer
|
|||
class OMDb(MovieDB):
|
||||
def __init__(self):
|
||||
api_key = os.getenv("OMDB_API_KEY")
|
||||
logging.log(1, f"WTF: {api_key}")
|
||||
self.api_key = f"{api_key}"
|
||||
self.base_url = "https://www.omdbapi.com/?apikey=" + self.api_key
|
||||
super().__init__()
|
||||
|
|
Loading…
Add table
Reference in a new issue