Skip to content

Commit

Permalink
👷 Update copyright notice
Browse files Browse the repository at this point in the history
  • Loading branch information
NoaSecond committed Jun 25, 2024
1 parent 48f0f00 commit 44bae38
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 23 deletions.
3 changes: 1 addition & 2 deletions AIMA - MiniCyc.bat
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,4 @@ start /b python main.py
echo [STEP 6/6] Opening Grafana...
start http://localhost:3000

@pause
:: Développé avec ❤️ par : www.noasecond.com.
@pause
3 changes: 1 addition & 2 deletions grafanaStreaming/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,4 @@ services:
- "8000:8000"

volumes:
grafana-storage:
# Développé avec ❤️ par : www.noasecond.com.
grafana-storage:
3 changes: 1 addition & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,5 +306,4 @@ def plotting(parent, title, num_of_lines, legend_labels):
except Exception as e:
print("No pico device detected : "+str(e))

sys.exit(app.exec())
# Développé avec ❤️ par : www.noasecond.com.
sys.exit(app.exec())
3 changes: 1 addition & 2 deletions scripts/deviceLibs/picoDevices.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,5 +117,4 @@ def get_pico_list():
for device in found:
device_list.append(
"PicoScope " + device.variant + " with serial " + device.serial)
return device_list
# Développé avec ❤️ par : www.noasecond.com.
return device_list
3 changes: 1 addition & 2 deletions scripts/deviceLibs/serialDevices.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,4 @@ def get_serial_list():
available_ports = []
for port in ports:
available_ports.append(port.device)
return available_ports
# Développé avec ❤️ par : www.noasecond.com.
return available_ports
3 changes: 1 addition & 2 deletions scripts/deviceLibs/visaDevices.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,5 +119,4 @@ def QueryCmd(self, cmd):
"""
if self.echoCmd == 1:
print(cmd)
return self.myInstr.query(cmd)
# Développé avec ❤️ par : www.noasecond.com.
return self.myInstr.query(cmd)
3 changes: 1 addition & 2 deletions scripts/devicesLink.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,4 @@ def list_all_devices():
devices += get_pico_list()
devices += get_serial_list()

return devices
# Développé avec ❤️ par : www.noasecond.com.
return devices
3 changes: 1 addition & 2 deletions scripts/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,5 +145,4 @@ def get_latest_csv_file(directory):
latest_file = file
latest_time = file_time

return latest_file
# Développé avec ❤️ par : www.noasecond.com.
return latest_file
3 changes: 1 addition & 2 deletions scripts/realTimePlotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,5 +115,4 @@ def closeEvent(self, event):
"""
self.running = False
self.thread.join()
event.accept()
# Développé avec ❤️ par : www.noasecond.com.
event.accept()
3 changes: 1 addition & 2 deletions scripts/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,5 +95,4 @@ def does_setting_exist(self, setting):
s, _ = line.strip().split(" = ")
if s == setting:
return True
return False
# Développé avec ❤️ par : www.noasecond.com.
return False
5 changes: 2 additions & 3 deletions utils/addCopyright.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import re

# Configurations des commentaires pour chaque type de fichier
copyright_comment = "Développé avec ❤️ par : www.noasecond.com."
copyright_comment = "© AIMA DEVELOPPEMENT 2024"

comments = {
'.php': "<!-- {} -->".format(copyright_comment),
Expand Down Expand Up @@ -64,5 +64,4 @@ def main():
add_comment_to_file(file_path, comment)

if __name__ == "__main__":
main()
# Développé avec ❤️ par : www.noasecond.com.
main()

0 comments on commit 44bae38

Please sign in to comment.