config.toml to gitignore

This commit is contained in:
onyx-and-iris 2022-08-08 00:06:40 +01:00
parent 9f0e5c7891
commit a45a57d1e4
4 changed files with 4 additions and 4 deletions

2
.gitignore vendored
View File

@ -129,3 +129,5 @@ dmypy.json
# Pyre type checker # Pyre type checker
.pyre/ .pyre/
config.toml

View File

@ -28,7 +28,7 @@ A toml file named config.toml, placed into the current working directory of your
```toml ```toml
[connection] [connection]
ip=<ip address> ip = "<ip address>"
``` ```
Alternatively you may pass it as a keyword argument. Alternatively you may pass it as a keyword argument.

View File

@ -12,6 +12,6 @@ def main():
if __name__ == "__main__": if __name__ == "__main__":
kind_id = "MR18" kind_id = "MR18"
ip = "mixer.local" ip = "<ip address>"
main() main()

View File

@ -1,2 +0,0 @@
[connection]
ip=172.16.0.100