Skip to content

Commit

Permalink
remove emoji
Browse files Browse the repository at this point in the history
  • Loading branch information
KatKatKateryna committed Oct 29, 2023
1 parent ba8bf0d commit b67d7af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion patch_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def patch_installer(tag):
print(f"Patched metadata v{tag} ")
file.close()

with open(plugin_start_file, "r", encoding="utf8") as file:
with open(plugin_start_file, "r") as file: # , encoding="utf8"
lines = file.readlines()
for i, line in enumerate(lines):
if "self.version = " in line:
Expand Down
4 changes: 2 additions & 2 deletions speckle_qgis.py
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ def onSend(self, message: str):

# time.sleep(0.3)
logToUser(
"👌 Data sent to '"
"Data sent to '"
+ str(streamName)
+ "'"
+ "\nClick to view commit online",
Expand Down Expand Up @@ -878,7 +878,7 @@ def onReceive(self):

# if self.dockwidget.experimental.isChecked(): time.sleep(3)
logToUser(
"👌 Data received",
"Data received",
level=0,
plugin=self.dockwidget,
blue=True,
Expand Down

0 comments on commit b67d7af

Please sign in to comment.