Skip to content

Commit

Permalink
Fix component scripts (#121)
Browse files Browse the repository at this point in the history
Signed-off-by: Scott Rushworth <openhab@5iver.com>
  • Loading branch information
Scott Rushworth authored May 21, 2019
1 parent 8d11f25 commit 0155e7f
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
provider_class = "org.eclipse.smarthome.core.binding.BindingInfoProvider"

import core
from core import osgi
from core.log import logging, LOG_PREFIX

try:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
)

import core
from core import osgi
from core.log import logging, LOG_PREFIX

try:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
provider_class = "org.eclipse.smarthome.core.thing.link.ItemChannelLinkProvider"

import core
from core import osgi
from core.log import logging, LOG_PREFIX

try:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
provider_class = "org.eclipse.smarthome.core.items.ItemProvider"

import core
from core import osgi
from core.log import logging, LOG_PREFIX

try:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
provider_class = "org.eclipse.smarthome.core.thing.ThingProvider"

import core
from core import osgi
from core.log import logging, LOG_PREFIX

try:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
provider_class = "org.eclipse.smarthome.core.thing.binding.ThingTypeProvider"

import core
from core import osgi
from core.log import logging, LOG_PREFIX

try:
class JythonThingTypeProvider(ThingTypeProvider):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
transformation_class = "org.eclipse.smarthome.core.transform.TransformationService"

import core
from core import osgi
from core.log import logging, LOG_PREFIX

try:
Expand Down

0 comments on commit 0155e7f

Please sign in to comment.