Skip to content

Commit

Permalink
Removed prints
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Mar 8, 2019
1 parent 786f72b commit c0dd5f8
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/appier/base.py
Expand Up @@ -664,25 +664,15 @@ def load(self, *args, **kwargs):

def unload(self, *args, **kwargs):
if not self._loaded: return
print("unloading supervisor")
self._unload_supervisor()
print("unloading parts")
self._unload_parts()
print("unloading models")
self._unload_models()
print("unloading execution")
self._unload_execution()
print("unloading manager")
self._unload_manager()
print("unloading session")
self._unload_session()
print("unloading bus")
self._unload_bus()
print("unloading preferences")
self._unload_preferences()
print("unloading cache")
self._unload_cache()
print("unloading logging")
self._unload_logging()
self._loaded = False

Expand Down

0 comments on commit c0dd5f8

Please sign in to comment.