diff --git a/.gitignore b/.gitignore index ac8ab05..454d0df 100644 --- a/.gitignore +++ b/.gitignore @@ -129,3 +129,5 @@ dmypy.json # Pyre type checker .pyre/ + +config.toml \ No newline at end of file diff --git a/README.md b/README.md index dbf7f41..52cf594 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ A toml file named config.toml, placed into the current working directory of your ```toml [connection] -ip= +ip = "" ``` Alternatively you may pass it as a keyword argument. diff --git a/__main__.py b/__main__.py index 374bd97..1aa893a 100644 --- a/__main__.py +++ b/__main__.py @@ -12,6 +12,6 @@ def main(): if __name__ == "__main__": kind_id = "MR18" - ip = "mixer.local" + ip = "" main() diff --git a/config.toml b/config.toml deleted file mode 100644 index 2f68de6..0000000 --- a/config.toml +++ /dev/null @@ -1,2 +0,0 @@ -[connection] -ip=172.16.0.100 \ No newline at end of file