1
0
mirror of https://github.com/JoelBender/bacpypes synced 2025-09-28 22:15:23 +08:00

Merge branch 'master' of https://github.com/hax404/bacpypes into hax404-master

This commit is contained in:
Joel Bender 2017-03-08 22:59:32 -05:00
commit 322122ddab
2 changed files with 2 additions and 2 deletions

View File

@ -81,7 +81,7 @@ And the new class works as intended::
>>> some_transformer.transform(10)
100
And the classes can be mixed in together:
And the classes can be mixed in together::
class ExampleThree(BaseCollector, PlusOne, TimesTen):
pass

View File

@ -36,7 +36,7 @@ And creating an instance::
In addition to the other command line options that are typically included in
BACpypes applications, this can be wrapped::
if '--console' in sys.agv:
if '--console' in sys.argv:
ConsoleCmd()
Command Recall