Skip to content

Commit

Permalink
Remove type hint.
Browse files Browse the repository at this point in the history
Type hint here is unnecessary, and causes the Travis CI test to
break.
  • Loading branch information
William-Brown5515 committed Nov 25, 2024
1 parent 94ec96b commit d802f61
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions bin/receiver.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import ssm.agents
from ssm import __version__, LOG_BREAK

from argparse import ArgumentParser, Namespace
from argparse import ArgumentParser
import logging
import os
import sys
Expand Down Expand Up @@ -52,7 +52,7 @@ def main():
version=ver)

# Parsing arguments into an argparse.Namespace object for structured access.
options: Namespace = arg_parser.parse_args()
options = arg_parser.parse_args()

Check warning on line 55 in bin/receiver.py

View check run for this annotation

Codecov / codecov/patch

bin/receiver.py#L55

Added line #L55 was not covered by tests

# Deprecating functionality.
old_log_config_default_path = '/etc/apel/logging.cfg'
Expand Down
4 changes: 2 additions & 2 deletions bin/sender.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import ssm.agents
from ssm import __version__, LOG_BREAK

from argparse import ArgumentParser, Namespace
from argparse import ArgumentParser
import logging
import os
import sys
Expand All @@ -47,7 +47,7 @@ def main():
version=ver)

# Parsing arguments into an argparse.Namespace object for structured access.
options: Namespace = arg_parser.parse_args()
options = arg_parser.parse_args()

Check warning on line 50 in bin/sender.py

View check run for this annotation

Codecov / codecov/patch

bin/sender.py#L50

Added line #L50 was not covered by tests

# Deprecating functionality.
old_log_config_default_path = '/etc/apel/logging.cfg'
Expand Down

0 comments on commit d802f61

Please sign in to comment.