-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
26b3ce1
commit 2b867e7
Showing
1 changed file
with
2 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,14 +8,13 @@ | |
__email__ = '[email protected], [email protected], [email protected]' | ||
|
||
import logging | ||
from abc import ABCMeta | ||
from six import add_metaclass | ||
from moler.device.proxy_pc3 import ProxyPc3 | ||
from moler.helpers import call_base_class_method_with_same_name, mark_to_call_base_class_method_with_same_name | ||
|
||
|
||
|
||
# Do not create object directly. Use subclass instead - JuniperEX. | ||
@call_base_class_method_with_same_name | ||
@add_metaclass(ABCMeta) | ||
class JuniperGeneric3(ProxyPc3): | ||
"""Junipergeneric device class.""" | ||
|
||
|