Skip to content

Commit

Permalink
Make changes suggested in the PR review
Browse files Browse the repository at this point in the history
  • Loading branch information
romifz committed Aug 31, 2020
1 parent 7efb28d commit 726b8d0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions kingfisher_scrapy/spiders/scotland_base.py
Expand Up @@ -5,10 +5,8 @@


class ScotlandBase(PeriodicalSpider):
default_from_date = '2019-01'
date_format = 'year-month'
default_until_date = date.today()
default_from_date = date(default_until_date.year - 1, default_until_date.month, 1)
default_from_date = date(date.today().year - 1, date.today().month, 1)

notice_types = [
1, # OJEU - F1 - Prior Information Notice
Expand Down

0 comments on commit 726b8d0

Please sign in to comment.