mirror of
https://github.com/mii443/usls.git
synced 2025-12-03 02:58:22 +00:00
Bug Fixes: Increased the number of available releases and fixed the Trocr bug. (#58)
This commit is contained in:
@@ -17,9 +17,9 @@ fn main() -> anyhow::Result<()> {
|
||||
|
||||
// 3. Fetch tags and files
|
||||
let hub = Hub::default().with_owner("jamjamjon").with_repo("usls");
|
||||
for tag in hub.tags().iter() {
|
||||
for (i, tag) in hub.tags().iter().enumerate() {
|
||||
let files = hub.files(tag);
|
||||
println!("{} => {:?}", tag, files); // Should be empty
|
||||
println!("{} :: {} => {:?}", i, tag, files); // Should be empty
|
||||
}
|
||||
|
||||
Ok(())
|
||||
|
||||
Reference in New Issue
Block a user