Skip to content

Commit

Permalink
Fix module names
Browse files Browse the repository at this point in the history
  • Loading branch information
Kotone Itaya committed Jul 18, 2018
1 parent 0c3e4ca commit ef8a92a
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
9 changes: 0 additions & 9 deletions brica/__init__.py

This file was deleted.

9 changes: 9 additions & 0 deletions pybrica/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from pybrica import messager
from pybrica import component
from pybrica import circuit
from pybrica import scheduler

from pybrica.messager import Messager
from pybrica.component import Component
from pybrica.circuit import Circuit
from pybrica.scheduler import Scheduler
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion brica/component.py → pybrica/component.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
except:
from funcsigs import signature, Signature, Parameter

from brica import messager
from pybrica import messager

class Component(object):
def __init__(self, f, interval=1000, offset=0, sleep=0):
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit ef8a92a

Please sign in to comment.