Commit e542f7b52c4e6c177cadcbb799cc5083604666ac
1 parent
8d9384cb
Exists in
dev
bugfix requirements
Showing
2 changed files
with
3 additions
and
3 deletions
Show diff stats
pyros.py
... | ... | @@ -51,7 +51,7 @@ AGENTS = { |
51 | 51 | |
52 | 52 | #COMMANDS = {"install": [], "start": AGENTS, "stop": AGENTS} |
53 | 53 | |
54 | -REQUIREMENTS = 'REQUIREMENTS.txt' | |
54 | +REQUIREMENTS = 'requirements.txt' | |
55 | 55 | b_in_dir = "bin" |
56 | 56 | PYTHON = "python3" |
57 | 57 | # should also be ok from venv: |
... | ... | @@ -59,7 +59,7 @@ PYTHON = "python3" |
59 | 59 | |
60 | 60 | IS_WINDOWS = platform.system() == "Windows" |
61 | 61 | if IS_WINDOWS: |
62 | - REQUIREMENTS = 'REQUIREMENTS_WINDOWS.txt' | |
62 | + REQUIREMENTS = 'requirements_win.txt' | |
63 | 63 | b_in_dir = "Scripts" |
64 | 64 | PYTHON = "python.exe" |
65 | 65 | ... | ... |
src/core/celme/angles.py
... | ... | @@ -1127,7 +1127,7 @@ if __name__ == "__main__": |
1127 | 1127 | print("==========================") |
1128 | 1128 | print("=== Self documentation ===") |
1129 | 1129 | print("==========================") |
1130 | - | |
1130 | + | |
1131 | 1131 | kex+=1; |
1132 | 1132 | print("\n=== Example {}: Simple conversion to degrees".format(kex)) |
1133 | 1133 | angle_inp = "2h3m27s" | ... | ... |