Skip to content

Commit

Permalink
Remove unused properties
Browse files Browse the repository at this point in the history
  • Loading branch information
Timidger committed Jan 15, 2020
1 parent c17654e commit 2e101cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wikia/wikia.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def __init__(self, sub_wikia, title=None, pageid=None, redirect=True, preload=Fa
raise WikiaError("Could not locate page \"{}\" in subwikia \"{}\"".format(title or pageid,
sub_wikia))
if preload:
for prop in ('content', 'summary', 'images', 'references', 'links', 'sections'):
for prop in ('content', 'summary', 'images', 'sections'):
getattr(self, prop)

def __repr__(self):
Expand Down

0 comments on commit 2e101cc

Please sign in to comment.