Skip to content

Commit

Permalink
fix import error and defaults in config
Browse files Browse the repository at this point in the history
  • Loading branch information
boramalper committed Aug 16, 2016
1 parent 05cee27 commit b870866
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions himawaripy/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import appdirs

# Increases the quality and the size. Possible values: 4, 8, 16, 20
level = 16
level = 4

# Define a hourly offset or let the script calculate it depending on your timezone
# If auto_offset is True, then script will calculate your hour offset automatically depending on your location.
Expand All @@ -19,4 +19,4 @@
"latest.png")

# Deadline for the whole download process in minutes
dl_deadline = 1
dl_deadline = 6
4 changes: 2 additions & 2 deletions himawaripy/himawaripy.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
from pytz import timezone
from dateutil.tz import tzlocal

from config import level, output_file, auto_offset, hour_offset , dl_deadline
from utils import set_background, get_desktop_environment
from .config import level, output_file, auto_offset, hour_offset , dl_deadline
from .utils import set_background, get_desktop_environment

counter = None
height = 550
Expand Down

0 comments on commit b870866

Please sign in to comment.