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

Merge branch 'hax404-master' into stage

This commit is contained in:
Joel Bender 2017-03-08 23:00:47 -05:00
commit 665ee4be99
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