You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This line on py4syn basically executes the dynamically created string with the name of all counters registered in the counterDB. In other words, if there is a counter named "test-1", it will execute:
test-1 = "test-1"
Since Python don't allow variable names with hyphens, this will result in an error. A better implementation of this method should be done.
The text was updated successfully, but these errors were encountered:
As stated by @gabrielfedel:
This line on py4syn basically executes the dynamically created string with the name of all counters registered in the counterDB. In other words, if there is a counter named "test-1", it will execute:
Since Python don't allow variable names with hyphens, this will result in an error. A better implementation of this method should be done.
The text was updated successfully, but these errors were encountered: