Compare commits

..

No commits in common. "master" and "v0.1.2" have entirely different histories.

2 changed files with 2 additions and 6 deletions

View File

@ -1,11 +1,6 @@
CHANGES CHANGES
======= =======
v0.1.2
------
* Updated README
v0.1.1 v0.1.1
------ ------

View File

@ -2,7 +2,7 @@ import logging
import re import re
import yfinance as yf import yfinance as yf
from aprsd import plugin from aprsd import plugin, trace
import aprsd_stock_plugin import aprsd_stock_plugin
@ -26,6 +26,7 @@ class YahooStockQuote(plugin.APRSDRegexCommandPluginBase):
# Do some checks here? # Do some checks here?
self.enabled = True self.enabled = True
@trace.trace
def process(self, packet): def process(self, packet):
LOG.info(self.__class__.__name__) LOG.info(self.__class__.__name__)