Skip to content

Commit

Permalink
only specify the one arg
Browse files Browse the repository at this point in the history
  • Loading branch information
james-rms committed Oct 24, 2024
1 parent b57583e commit 44d90e6
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions foxglove/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,11 +318,7 @@ def get_messages(
return [
(channel.topic, message, decoded_message)
for _, channel, message, decoded_message in reader.iter_decoded_messages(
topics=None,
start_time=None,
end_time=None,
log_time_order=False,
reverse=False,
)
]

Expand Down Expand Up @@ -361,13 +357,7 @@ def iter_messages(
# We deep-copy here as these factories might be mutated
decoder_factories = copy.deepcopy(DEFAULT_DECODER_FACTORIES)
reader = make_reader(response.raw, decoder_factories=decoder_factories)
return reader.iter_decoded_messages(
topics=None,
start_time=None,
end_time=None,
log_time_order=False,
reverse=False,
)
return reader.iter_decoded_messages(log_time_order=False)

def download_recording_data(
self,
Expand Down

0 comments on commit 44d90e6

Please sign in to comment.