Skip to content

Commit

Permalink
disable debug in the example
Browse files Browse the repository at this point in the history
  • Loading branch information
Guymer committed Nov 4, 2024
1 parent 3889bb9 commit c7f9c16
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import fmc
# Run function ...
fmc.run(
"example.csv",
debug = False,
extraCountries = [
"Denmark",
"Germany",
Expand All @@ -25,13 +26,13 @@ fmc.run(
"Russia",
"Switzerland",
],
notVisited = [
notVisited = [
"Hong Kong",
"Singapore",
],
renames = {
renames = {
"Czech Republic" : "Czechia",
"United States" : "United States of America",
"United States" : "United States of America",
}
)
```
Expand Down
7 changes: 4 additions & 3 deletions example.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
# Run function ...
fmc.run(
"example.csv",
debug = False,
extraCountries = [
"Denmark",
"Germany",
Expand All @@ -19,12 +20,12 @@
"Russia",
"Switzerland",
],
notVisited = [
notVisited = [
"Hong Kong",
"Singapore",
],
renames = {
renames = {
"Czech Republic" : "Czechia",
"United States" : "United States of America",
"United States" : "United States of America",
}
)

0 comments on commit c7f9c16

Please sign in to comment.