Skip to content
This repository was archived by the owner on Apr 22, 2024. It is now read-only.

Commit 47f7907

Browse files
committed
Fixing __all__ tuple with 1 element
1 parent 3079c86 commit 47f7907

16 files changed

+16
-16
lines changed

pyof/v0x01/controller2switch/barrier_reply.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from pyof.v0x01.common import header as of_header
88
from pyof.v0x01.foundation import base
99

10-
__all__ = ('BarrierReply')
10+
__all__ = ('BarrierReply',)
1111

1212
# Classes
1313

pyof/v0x01/controller2switch/barrier_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from pyof.v0x01.common import header as of_header
88
from pyof.v0x01.foundation import base
99

10-
__all__ = ('BarrierRequest')
10+
__all__ = ('BarrierRequest',)
1111

1212
# Classes
1313

pyof/v0x01/controller2switch/features_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from pyof.v0x01.common import header as of_header
44
from pyof.v0x01.foundation import base
55

6-
__all__ = ('FeaturesRequest')
6+
__all__ = ('FeaturesRequest',)
77

88
# Classes
99

pyof/v0x01/controller2switch/get_config_reply.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from pyof.v0x01.common import header as of_header
88
from pyof.v0x01.controller2switch import common
99

10-
__all__ = ('GetConfigReply')
10+
__all__ = ('GetConfigReply',)
1111

1212

1313
class GetConfigReply(common.SwitchConfig):

pyof/v0x01/controller2switch/get_config_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from pyof.v0x01.common import header as of_header
44
from pyof.v0x01.foundation import base
55

6-
__all__ = ('GetConfigRequest')
6+
__all__ = ('GetConfigRequest',)
77

88
# Classe
99

pyof/v0x01/controller2switch/packet_out.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from pyof.v0x01.foundation import base, basic_types
1010
from pyof.v0x01.foundation.exceptions import ValidationError
1111

12-
__all__ = ('PacketOut')
12+
__all__ = ('PacketOut',)
1313

1414
# Classes
1515

pyof/v0x01/controller2switch/port_mod.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from pyof.v0x01.foundation import base, basic_types
1313

1414

15-
__all__ = ('PortMod')
15+
__all__ = ('PortMod',)
1616

1717
# Classes
1818

pyof/v0x01/controller2switch/queue_get_config_reply.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from pyof.v0x01.common import phy_port, queue
1010
from pyof.v0x01.foundation import base, basic_types
1111

12-
__all__ = ('QueueGetConfigReply')
12+
__all__ = ('QueueGetConfigReply',)
1313

1414

1515
class QueueGetConfigReply(base.GenericMessage):

pyof/v0x01/controller2switch/queue_get_config_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from pyof.v0x01.common import phy_port
1010
from pyof.v0x01.foundation import base, basic_types
1111

12-
__all__ = ('QueueGetConfigRequest')
12+
__all__ = ('QueueGetConfigRequest',)
1313

1414

1515
class QueueGetConfigRequest(base.GenericMessage):

pyof/v0x01/controller2switch/set_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from pyof.v0x01.common import header as of_header
88
from pyof.v0x01.controller2switch import common
99

10-
__all__ = ('SetConfig')
10+
__all__ = ('SetConfig',)
1111

1212

1313
class SetConfig(common.SwitchConfig):

pyof/v0x01/controller2switch/stats_reply.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from pyof.v0x01.foundation import base, basic_types
1010

1111

12-
__all__ = ('StatsReply')
12+
__all__ = ('StatsReply',)
1313

1414
# Classes
1515

pyof/v0x01/controller2switch/stats_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from pyof.v0x01.controller2switch import common
99
from pyof.v0x01.foundation import base, basic_types
1010

11-
__all__ = ('StatsRequest')
11+
__all__ = ('StatsRequest',)
1212

1313

1414
class StatsRequest(base.GenericMessage):

pyof/v0x01/symmetric/echo_reply.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from pyof.v0x01.common import header as of_header
88
from pyof.v0x01.foundation import base
99

10-
__all__ = ('EchoReply')
10+
__all__ = ('EchoReply',)
1111

1212
# Classes
1313

pyof/v0x01/symmetric/echo_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from pyof.v0x01.common import header as of_header
88
from pyof.v0x01.foundation import base
99

10-
__all__ = ('EchoRequest')
10+
__all__ = ('EchoRequest',)
1111

1212
# Classes
1313

pyof/v0x01/symmetric/hello.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from pyof.v0x01.common import header as of_header
88
from pyof.v0x01.foundation import base
99

10-
__all__ = ('Hello')
10+
__all__ = ('Hello',)
1111

1212
# Classes
1313

pyof/v0x01/symmetric/vendor_header.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from pyof.v0x01.foundation import base, basic_types
99

1010

11-
__all__ = ('VendorHeader')
11+
__all__ = ('VendorHeader',)
1212

1313
# Classes
1414

0 commit comments

Comments
 (0)