Skip to content

Commit d73a579

Browse files
jaimeibalvarolopez
authored andcommitted
fix: remove unnecessary blank lines in base.py and logstash.py
1 parent 59fc0ca commit d73a579

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

caso/extract/openstack/base.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,7 @@ def _get_keystone_session(self):
9494
def _get_keystone_client(self, project_scoped=True):
9595
"""Get a Keystone Client for the configured project in the object."""
9696
client = keystone_client.get_client(
97-
CONF,
98-
project=self.project if project_scoped else None,
99-
system_scope="all"
97+
CONF, project=self.project if project_scoped else None, system_scope="all"
10098
)
10199
return client
102100

caso/messenger/logstash.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
from caso import exception
2626
import caso.messenger
2727

28-
2928
opts = [
3029
cfg.StrOpt("host", default="localhost", help="Logstash host to send records to."),
3130
cfg.IntOpt("port", default=5000, help="Logstash server port."),

0 commit comments

Comments
 (0)