Skip to content

Commit

Permalink
Fix caching for installed platforms and libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed May 1, 2015
1 parent 0a474d3 commit 7391dfa
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion platformio/libmanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ def unpack(pkgpath, dest_dir):
fu = FileUnpacker(pkgpath, dest_dir)
return fu.start()

@util.memoized
def get_installed(self):
items = {}
if not isdir(self.lib_dir):
Expand Down
1 change: 0 additions & 1 deletion platformio/platforms/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@ def load_module(type_, path):
return module

@classmethod
@util.memoized
def _lookup_platforms(cls):
platforms = {}
for d in (util.get_home_dir(), util.get_source_dir()):
Expand Down

0 comments on commit 7391dfa

Please sign in to comment.